Commit 3e16d9e26cb2f5204c569b42349451a6900adeda
Add trailing ampersand
cel committed on 12/1/2019, 5:24:12 AMParent: caf3d30d63d6aeaa044de2339d4f9a0bd26a80e2
Files changed
bin.js | changed |
bin.js | |||
---|---|---|---|
@@ -177,9 +177,10 @@ | |||
177 | 177 … | pagesInfoForApiByTitle[info.title] = info | |
178 | 178 … | return info.title | |
179 | 179 … | }) | |
180 | 180 … | var url = api + '?format=json&action=query' + | |
181 | - '&titles=' + encodeURIComponent('\x1f' + titles.join('\x1f')) | ||
181 … | + '&titles=' + encodeURIComponent('\x1f' + titles.join('\x1f')) + | ||
182 … | + '&' // trailing & needed for some reason | ||
182 | 183 … | waiting++ | |
183 | 184 … | getJson(url, function (err, data) { | |
184 | 185 … | if (err) throw err | |
185 | 186 … | if (data.warnings) console.trace('Warnings:', data.warnings) |
Built with git-ssb-web