Skip to content

Commit

Permalink
Update compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Kontos committed Mar 24, 2018
1 parent 17f8fd7 commit 22dcd9a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions browser/app/profile/firefox.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ pref("extensions.logging.enabled", false);
// Disables strict compatibility, making addons compatible-by-default.
pref("extensions.strictCompatibility", false);

// Disable compatibility checking due to mish-mash of versions.
pref("extensions.checkCompatibility.56.1", false);

// Specifies a minimum maxVersion an addon needs to say it's compatible with
// for it to be compatible by default.
pref("extensions.minCompatibleAppVersion", "4.0");
Expand Down
8 changes: 4 additions & 4 deletions netwerk/protocol/http/nsHttpHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -436,11 +436,11 @@ nsHttpHandler::Init()

nsHttpChannelAuthProvider::InitializePrefs();

// mMisc.AssignLiteral("rv:" MOZILLA_UAVERSION);
mMisc.AssignLiteral("rv: 57.0");
mMisc.AssignLiteral("rv:" MOZILLA_UAVERSION);
// mMisc.AssignLiteral("rv: 57.0");

// mCompatFirefox.AssignLiteral("Firefox/" MOZILLA_UAVERSION);
mCompatFirefox.AssignLiteral("Firefox/57.0");
mCompatFirefox.AssignLiteral("Firefox/" MOZILLA_UAVERSION);
// mCompatFirefox.AssignLiteral("Firefox/57.0");

nsCOMPtr<nsIXULAppInfo> appInfo =
do_GetService("@mozilla.org/xre/app-info;1");
Expand Down

0 comments on commit 22dcd9a

Please sign in to comment.