We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 577410f commit 4d2bbc1Copy full SHA for 4d2bbc1
javascripts/discourse/services/links-settings.js
@@ -18,7 +18,7 @@ export default class NormalizedProfileLinks extends Service {
18
return null;
19
}
20
21
- const normalizedBase = baseUrl.endsWith("/") ? baseUrl : baseUrl + "/";
+ const normalizedBase = baseUrl.endsWith("/") || baseUrl.endsWith("@") ? baseUrl : baseUrl + "/";
22
return `${normalizedBase}${username}`;
23
24
0 commit comments