mirror of
https://github.com/Radarr/Radarr
synced 2025-12-06 08:28:50 +01:00
Fixed: Production builds erroneously marked as not Production
build number exceeded; bump to 20k fixes #11089
This commit is contained in:
parent
3ec5a4b78a
commit
358ce92f85
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue