Commit a49eb213 authored by henry's avatar henry Committed by Pier Angelo Vendrame
Browse files

fixup! Bug 43125: Extend the 13.5 EOL expiry date for tor-browser.

TB 43168: Extend the 13.5 EOL to 14th October 2025.
parent 8cd78869
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@
// Show a prompt that a user's system will no longer be supported.
window.addEventListener("load", () => {
  let labelId;
  // Firefox moved ESR 115 EOL to 16th September 2025.
  const isExpired = Date.now() > Date.UTC(2025, 8, 16);
  // ESR 115 EOL pushed to 14th October 2025.
  const isExpired = Date.now() > Date.UTC(2025, 9, 14);

  if (
    AppConstants.platform === "macosx" &&