FIX: getURL on a subfolder site should ignore prefix in middle of URL (#8794)

This commit is contained in:
David Taylor
2020-01-27 17:51:46 +00:00
committed by GitHub
parent bb816302f6
commit fe0d912b97
2 changed files with 13 additions and 1 deletions

View File

@ -10,6 +10,18 @@ QUnit.test("getURL on subfolder install", assert => {
"/forum/u/neil",
"relative url has subfolder"
);
assert.equal(
Discourse.getURL("/svg-sprite/forum.example.com/svg-sprite.js"),
"/forum/svg-sprite/forum.example.com/svg-sprite.js",
"works when the url has the prefix in the middle"
);
assert.equal(
Discourse.getURL("/forum/t/123"),
"/forum/t/123",
"does not prefix if the URL is already prefixed"
);
});
QUnit.test("getURLWithCDN on subfolder install with S3", assert => {