mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
Fix issue where only the first page of mapillary results would be shown (close #6382)
This commit is contained in:
@@ -91,7 +91,7 @@ function loadNextTilePage(which, currZoom, url, tile) {
|
||||
if (!response.ok) {
|
||||
throw new Error(response.status + ' ' + response.statusText);
|
||||
}
|
||||
var linkHeader = response.headers.Link;
|
||||
var linkHeader = response.headers.get('Link');
|
||||
if (linkHeader) {
|
||||
var pagination = parsePagination(linkHeader);
|
||||
if (pagination.next) {
|
||||
|
||||
Reference in New Issue
Block a user