From c6c3f0bb8878d9fdeb2be2033d9bdbdfbac3166d Mon Sep 17 00:00:00 2001 From: nobody Date: Sat, 18 Dec 2021 09:49:24 +0100 Subject: [PATCH] Typo fixed (#815) --- core/request-analyzer.js | 4 ++-- pages/updates/updates.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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