RelationShipNotifier: Delay by 5s to fix false positives
This commit is contained in:
parent
2c8ebdce7d
commit
4dff1c5bd5
1 changed files with 3 additions and 1 deletions
|
@ -56,7 +56,9 @@ export default definePlugin({
|
||||||
],
|
],
|
||||||
|
|
||||||
async start() {
|
async start() {
|
||||||
await syncAndRunChecks();
|
setTimeout(() => {
|
||||||
|
syncAndRunChecks();
|
||||||
|
}, 5000);
|
||||||
forEachEvent((ev, cb) => FluxDispatcher.subscribe(ev, cb));
|
forEachEvent((ev, cb) => FluxDispatcher.subscribe(ev, cb));
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue