dont try to load users

This commit is contained in:
pablof7z
2025-04-09 11:48:58 +01:00
parent c0b37dd581
commit ed6e053a05

View File

@@ -72,7 +72,9 @@ export async function loadKnownUsers(): Promise<void> {
// Initialize the cache // Initialize the cache
if (!Object.keys(knownUsers).length) { if (!Object.keys(knownUsers).length) {
await loadKnownUsers(); try {
await loadKnownUsers();
} catch {}
} }
/** /**