This commit is contained in:
tamaina 2024-02-26 21:31:43 +00:00
parent 5b7b8503cd
commit 00738b90c2
1 changed files with 6 additions and 4 deletions

View File

@ -171,10 +171,12 @@ export class ApDbResolverService implements OnApplicationShutdown {
keys.find(x => {
try {
const url = new URL(x.keyId);
if (
url.hash.toLowerCase().includes('main') ||
url.pathname.split('/').pop()?.toLowerCase().includes('main')
) {
const path = url.pathname.split('/').pop()?.toLowerCase();
if (url.hash) {
if (url.hash.toLowerCase().includes('main')) {
return true;
}
} else if (path?.includes('main') || path === 'publickey') {
return true;
}
} catch { /* noop */ }