silently add filter to the sync list

This commit is contained in:
buzz-lightsnack-2007 2024-04-28 14:18:53 +08:00
parent 22c8b70d49
commit 08ed48e4a2

View file

@ -92,7 +92,7 @@ export default class filters {
// Add the filter to the sync list.
if ((await read(["settings", `filters`])) ? !((Object.keys(await read(["settings", `filters`]))).includes(filter_URL)) : true) {
write(["settings", `filters`, filter_URL], true, 1);
write(["settings", `filters`, filter_URL], true, 1, {"silent": true});
}
}
})