diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/relationshipNotifier/index.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/relationshipNotifier/index.ts b/src/plugins/relationshipNotifier/index.ts index fb91ca3..6319142 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)); }, |