diff --git a/src/renderer/src/scripts/check-firewall/checkFirewall.js b/src/renderer/src/scripts/check-firewall/checkFirewall.js index 09d8f4d0c..f373c19d4 100644 --- a/src/renderer/src/scripts/check-firewall/checkFirewall.js +++ b/src/renderer/src/scripts/check-firewall/checkFirewall.js @@ -6,10 +6,9 @@ import axios from "axios"; * Returns: true if the client is blocked by an external firewall, false otherwise. */ export const clientBlockedByExternalFirewall = async (url) => { - - // if the user doesnt have an internet connection they are not blocked by a firewall + // if the user doesnt have an internet connection they are not blocked by a firewall // A simplification but we check for internet elsewhere so this is okay here. - let internetConnection = navigator.onLine; + let internetConnection = navigator.onLine; if (!internetConnection) { return false; }