make the filter selection semi-strict

This commit is contained in:
buzz-lightsnack-2007 2024-04-15 23:33:43 +08:00
parent 18f949d9bf
commit 309cdd4306

View file

@ -25,7 +25,7 @@ export default class filters {
async select(URL = window.location.href) {
let SELECTED = await (async () => {
// Get the filters.
let filter = await search(`filters`, URL, `URL`, false, {"cloud": -1});
let filter = await search(`filters`, URL, `URL`, 0.5, {"cloud": -1});
// If there are filters, then filter the URL.
return filter;