Commit df55a877 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 d88b43a7
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -215,6 +215,9 @@ export class NetErrorChild extends RemotePageChild {
  }

  RPMShowOSXLocalNetworkPermissionWarning() {
    // Short-circuit per tor-browser#44127
    return false;
    /*
    if (!lazy.AppInfo.isMac) {
      return false;
    }
@@ -226,5 +229,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;
    */
  }
}