We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0230e19 commit 8ead0a2Copy full SHA for 8ead0a2
com.playeveryware.eos/Runtime/Core/Config/PlatformConfig.cs
@@ -419,8 +419,8 @@ protected virtual void MigrateNonOverrideableConfigValues(EOSConfig overrideValu
419
string compDeploymentString = mainNonOverrideableConfig.deploymentID?.ToLower();
420
421
foreach(Named<Deployment> dep in productConfig.Environments.Deployments)
422
- {
423
- if (!compDeploymentString.Equals(dep.Value.DeploymentId.ToString("N").ToLowerInvariant()))
+
+ if (!string.IsNullOrEmpty(compDeploymentString) && !compDeploymentString.Equals(dep.Value.DeploymentId.ToString("N").ToLowerInvariant()))
424
{
425
continue;
426
}
0 commit comments