use host id instead of host in settings

This commit is contained in:
2026-06-28 20:20:37 +02:00
parent 0455b53992
commit a1328e8908
6 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export default {
match: async function (match: RegExpMatchArray) {
if (window.location.host.startsWith('filemoon')) {
await HostSettings.addTemporaryHostDomain(this, new URL(match[0]).host);
await HostSettings.addTemporaryHostDomain(this.id, new URL(match[0]).host);
return null;
}