add function to fix updater when update interval is changed

This commit is contained in:
buzz-lightsnack-2007 2024-04-14 13:24:53 +08:00
parent dd83ba45fe
commit f4743908b4

View file

@ -67,12 +67,12 @@ export default class fc {
DURATION_PREFERENCES[`duration`] = 24; DURATION_PREFERENCES[`duration`] = 24;
// Write it. // Write it.
write([`settings`, `sync`], DURATION_PREFERENCES, -1); await write([`settings`, `sync`], DURATION_PREFERENCES, -1);
}; };
if (((typeof DURATION_PREFERENCES).includes(`obj`) && DURATION_PREFERENCES != null && !Array.isArray(DURATION_PREFERENCES)) ? ((DURATION_PREFERENCES[`duration`]) ? (DURATION_PREFERENCES[`duration`] > 0) : false) : false) { if (((typeof DURATION_PREFERENCES).includes(`obj`) && DURATION_PREFERENCES != null && !Array.isArray(DURATION_PREFERENCES)) ? ((DURATION_PREFERENCES[`duration`]) ? (DURATION_PREFERENCES[`duration`] > 0) : false) : false) {
// Convert DURATION_PREFERENCES[`duration`]) from hrs to milliseconds. // Convert DURATION_PREFERENCES[`duration`]) from hrs to milliseconds.
DURATION_PREFERENCES[`duration`] = DURATION_PREFERENCES[`duration`] * 60 * 60 * 1000; DURATION_PREFERENCES[`duration`] = DURATION_PREFERENCES[`duration`] * (60 ** 2) * 1000;
let FILTERS = new filters; let FILTERS = new filters;
// Now, set the interval. // Now, set the interval.
@ -84,9 +84,11 @@ export default class fc {
}; };
// Provide a way to cancel the interval. // Provide a way to cancel the interval.
let updater_cancel = () => { let updater_cancel = (updater) => {
} };
}; };
}) })