From d71f69bd90b2f2beabd9a4ada4e0740cc17cee69 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Thu, 5 Dec 2019 09:21:02 -0500 Subject: [PATCH] Minor code review --- platform/firefox/vapi-webrequest.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/firefox/vapi-webrequest.js b/platform/firefox/vapi-webrequest.js index 876b8a4ca..d077da1bd 100644 --- a/platform/firefox/vapi-webrequest.js +++ b/platform/firefox/vapi-webrequest.js @@ -219,7 +219,7 @@ } if ( this.cnameUncloak === false ) { return; } const hn = vAPI.hostnameFromNetworkURL(details.url); - let cname = this.cnames.get(hn); + const cname = this.cnames.get(hn); if ( cname === '' ) { return; } if ( cname !== undefined ) { return this.processCanonicalName(hn, cname, details);