Merge pull request #2934 from TheTincho/fix-migrated-url-redirect

Add PATH_PREFIX to redirectToMigratedURL
This commit is contained in:
Martín Ferrari 2017-07-11 20:31:22 +01:00 committed by GitHub
commit bb13a23d29
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -927,7 +927,7 @@ function redirectToMigratedURL() {
});
});
var query = $.param(queryObject);
window.location = "/graph?" + query;
window.location = PATH_PREFIX + "/graph?" + query;
}
$(init);