diff --git a/core/request-analyzer.js b/core/request-analyzer.js index 13f905e8..08e88053 100644 --- a/core/request-analyzer.js +++ b/core/request-analyzer.js @@ -51,13 +51,13 @@ requestAnalyzer.isValidCandidate = function (requestDetails, tabDetails) { } // Font Awesome injections in Chromium deactivated (https://gitlab.com/nobody42/localcdn/-/issues/67) - if (BrowserType.CHROMIUM) { + if (!BrowserType.FIREFOX) { if (requestDetails.url.includes('font-awesome') || requestDetails.url.includes('fontawesome')) { console.warn(`${LogString.PREFIX} ${LogString.FONT_AWESOME}`); log.append(tabDetails.url, requestDetails.url, LogString.FONT_AWESOME, true); return false; } - if (requestAnalyzer._isGoogleMaterialIcons(requestedDomain, requestDetails.url)) { + if (requestAnalyzer.isGoogleMaterialIcons(requestedDomain, requestDetails.url)) { // also valid for Google Material icons console.warn(`${LogString.PREFIX} ${LogString.GOOGLE_MATERIAL_ICONS}`); log.append(tabDetails.url, requestDetails.url, LogString.GOOGLE_MATERIAL_ICONS, true); diff --git a/pages/updates/updates.html b/pages/updates/updates.html index 828d4c73..19200936 100644 --- a/pages/updates/updates.html +++ b/pages/updates/updates.html @@ -25,9 +25,9 @@

New in LocalCDN:

-

+

Fixed