Reorder start/stopWorkers

This commit is contained in:
nimbleghost 2023-06-17 22:32:24 +02:00
parent 9ba733d4e0
commit 30a8f66db2

View file

@ -139,13 +139,6 @@ export const useAutoSubscribe = (subscriptions, selected) => {
* up "unused" imports. See https://github.com/binwiederhier/ntfy/issues/186.
*/
const stopWorkers = () => {
poller.stopWorker();
pruner.stopWorker();
accountApi.stopWorker();
webPush.stopWorker();
};
const startWorkers = () => {
poller.startWorker();
pruner.startWorker();
@ -153,6 +146,13 @@ const startWorkers = () => {
webPush.startWorker();
};
const stopWorkers = () => {
poller.stopWorker();
pruner.stopWorker();
accountApi.stopWorker();
webPush.stopWorker();
};
export const useBackgroundProcesses = () => {
useWebPushTopicListener();