Merge pull request #1186 from tgstation/Patches [TGSDeploy]

Fix 500 error when reading old compile jobs
This commit is contained in:
Jordan Brown
2021-01-03 17:42:25 -05:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
<!-- Integration tests will ensure they match across the board -->
<Import Project="ControlPanelVersion.props" />
<PropertyGroup>
<TgsCoreVersion>4.7.0</TgsCoreVersion>
<TgsCoreVersion>4.7.1</TgsCoreVersion>
<TgsConfigVersion>2.2.0</TgsConfigVersion>
<TgsApiVersion>8.1.2</TgsApiVersion>
<TgsClientVersion>9.1.1</TgsClientVersion>
@@ -90,7 +90,7 @@ namespace Tgstation.Server.Host.Models
ByondVersion = Version.Parse(ByondVersion),
MinimumSecurityLevel = MinimumSecurityLevel,
DMApiVersion = DMApiVersion,
RepositoryOrigin = new Uri(RepositoryOrigin),
RepositoryOrigin = RepositoryOrigin != null ? new Uri(RepositoryOrigin) : null,
};
}
}