Commit a4319ee1 authored by ma1's avatar ma1 Committed by Pier Angelo Vendrame
Browse files

TB 44127: Do not show macOS Privacy hint on network error pages

parent d5836ff8
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -214,6 +214,9 @@ export class NetErrorChild extends RemotePageChild {
  }

  RPMShowOSXLocalNetworkPermissionWarning() {
    // Short-circuit per tor-browser#44127
    return false;
    /*
    if (!lazy.AppInfo.isMac) {
      return false;
    }
@@ -225,5 +228,6 @@ export class NetErrorChild extends RemotePageChild {
    let version = parseInt(Services.sysinfo.getProperty("version"));
    // We only show this error on Sequoia or later
    return version >= 24;
    */
  }
}