1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-03-14 19:42:32 +00:00

Ensure theme is transferred when visiting a linked resource.

This commit is contained in:
CalDescent 2023-03-03 18:16:35 +00:00
parent 4b7844dc06
commit 94f14a39e3

@ -55,6 +55,8 @@ function buildResourceUrl(service, name, identifier, path) {
url = "/" + name;
if (path != null) url = url.concat((path.startsWith("/") ? "" : "/") + path);
}
url = url.concat((url.includes("?") ? "" : "?") + "&theme=" + _qdnTheme);
return url;
}