network: follow-up rev 914569c0b

This commit is contained in:
roytam1 2024-07-09 11:10:55 +08:00
commit a50a1db5a7

View file

@ -353,7 +353,11 @@ nsHttpHandler::Init()
if (mCompatPlatformEnabled) {
mProductSub.Assign(mCompatPlatformVersion);
} else {
mProductSub.AssignLiteral(MOZILLA_UAVERSION);
if (mCompatPlatformEnabled) {
mProductSub.Assign(mCompatPlatformVersion);
} else {
mProductSub.Assign(mAppBuildID);
}
}
} else {
mProductSub.Assign(mAppBuildID);
@ -990,9 +994,17 @@ nsHttpHandler::PrefsChanged(nsIPrefBranch *prefs, const char *pref)
}
if (mCompatGeckoEnabled) {
mProductSub.AssignLiteral(MOZILLA_UAVERSION);
if (mCompatPlatformEnabled) {
mProductSub.Assign(mCompatPlatformVersion);
} else {
mProductSub.AssignLiteral(MOZILLA_UAVERSION);
}
} else {
mProductSub.Assign(mAppBuildID);
if (mCompatPlatformEnabled) {
mProductSub.Assign(mCompatPlatformVersion);
} else {
mProductSub.Assign(mAppBuildID);
}
}
// In case MOZILLA_UAVERSION is empty for some odd reason...
if (mProductSub.IsEmpty()) {
@ -1019,7 +1031,11 @@ nsHttpHandler::PrefsChanged(nsIPrefBranch *prefs, const char *pref)
if (mCompatGeckoEnabled) {
mMisc += mCompatFirefoxVersion;
} else {
mMisc += MOZILLA_UAVERSION;
if (mCompatPlatformEnabled) {
mMisc += mCompatPlatformVersion;
} else {
mMisc += MOZILLA_UAVERSION;
}
}
mCompatFirefox.AssignLiteral("Firefox/");
mCompatFirefox += mCompatFirefoxVersion;