diff --git a/src/plugins/relationshipNotifier/index.ts b/src/plugins/relationshipNotifier/index.ts index fb91ca37..6319142c 100644 --- a/src/plugins/relationshipNotifier/index.ts +++ b/src/plugins/relationshipNotifier/index.ts @@ -56,7 +56,9 @@ export default definePlugin({ ], async start() { - await syncAndRunChecks(); + setTimeout(() => { + syncAndRunChecks(); + }, 5000); forEachEvent((ev, cb) => FluxDispatcher.subscribe(ev, cb)); },