Fixed: Production builds erroneously marked as not Production

build number exceeded; bump to 20k
fixes #11089
This commit is contained in:
bakerboy448 2025-05-25 11:48:29 -05:00 committed by GitHub
parent 3ec5a4b78a
commit 358ce92f85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -207,7 +207,7 @@ private static bool InternalIsDebug()
private static bool InternalIsOfficialBuild()
{
// Official builds will never have such a high revision
if (BuildInfo.Version.Major >= 10 || BuildInfo.Version.Revision > 10000)
if (BuildInfo.Version.Major >= 10 || BuildInfo.Version.Revision > 20000)
{
return false;
}