avoid period after URLs in log output
This commit is contained in:
parent
2287aeeb65
commit
e627a8a5e5
|
@ -982,7 +982,7 @@ namespace StardewModdingAPI.Framework
|
|||
catch (IncompatibleInstructionException) // details already in trace logs
|
||||
{
|
||||
string[] updateUrls = new[] { modDatabase.GetModPageUrlFor(manifest.UniqueID), "https://mods.smapi.io" }.Where(p => p != null).ToArray();
|
||||
errorReasonPhrase = $"it's no longer compatible. Please check for a new version at {string.Join(" or ", updateUrls)}.";
|
||||
errorReasonPhrase = $"it's no longer compatible. Please check for a new version at {string.Join(" or ", updateUrls)}";
|
||||
return false;
|
||||
}
|
||||
catch (SAssemblyLoadFailedException ex)
|
||||
|
|
Loading…
Reference in New Issue