Commit 18c2329b authored by Martin Giger's avatar Martin Giger
Browse files

Bug 1677812 - Don't force Firefox settings server for Thunderbird. r=leplatrem

parent 6068d860
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -59,7 +59,11 @@ var Utils = {
      Ci.nsIEnvironment
    );
    const isXpcshell = env.exists("XPCSHELL_TEST_PROFILE_DIR");
    return AppConstants.RELEASE_OR_BETA && !Cu.isInAutomation && !isXpcshell
    const isNotThunderbird = AppConstants.MOZ_APP_NAME != "thunderbird";
    return AppConstants.RELEASE_OR_BETA &&
      !Cu.isInAutomation &&
      !isXpcshell &&
      isNotThunderbird
      ? "https://firefox.settings.services.mozilla.com/v1"
      : gServerURL;
  },