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