From 358ce92f85c33ae247d97f97ce5739a11e37788e Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Sun, 25 May 2025 11:48:29 -0500 Subject: [PATCH] Fixed: Production builds erroneously marked as not Production build number exceeded; bump to 20k fixes #11089 --- src/NzbDrone.Common/EnvironmentInfo/RuntimeInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Common/EnvironmentInfo/RuntimeInfo.cs b/src/NzbDrone.Common/EnvironmentInfo/RuntimeInfo.cs index 93284e4777..11bce19326 100644 --- a/src/NzbDrone.Common/EnvironmentInfo/RuntimeInfo.cs +++ b/src/NzbDrone.Common/EnvironmentInfo/RuntimeInfo.cs @@ -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; }