Emoji favicons for the web
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: make str-based selector case-insensitive (#59)

authored by

deadmouse and committed by
GitHub
6b6eb5ea 4c86fced

+1 -1
+1 -1
source/utilities/favicon_selector.ts
··· 38 38 return regex.test(url); 39 39 } 40 40 41 - return url.indexOf(favicon.matcher) != -1; 41 + return url.toLocaleLowerCase().includes(favicon.matcher.toLocaleLowerCase()); 42 42 }; 43 43 }