We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fee5fc commit 4598867Copy full SHA for 4598867
common/PathdbMods.js
@@ -110,7 +110,8 @@ async function PathDbMods() {
110
text: response.statusText,
111
url: response.url
112
};
113
- return response.json().then(x=>convertPathDbSlide(x[0])).then(x => [x]);
+ let result = response.json().then(x=>convertPathDbSlide(x[0])).then(x => [x])
114
+ return result;
115
})
116
}
117
Store.prototype.default_getSlide = Store.prototype.getSlide
@@ -131,7 +132,8 @@ async function PathDbMods() {
131
132
133
134
- return response.json().then(convertPathDbSlide).then(x => [x]);
135
+ let result = response.json().then(convertPathDbSlide).then(x => [x]);
136
137
138
139
0 commit comments