avoid period after URLs in log output

This commit is contained in:
Jesse Plamondon-Willard 2019-01-03 18:41:46 -05:00
parent 2287aeeb65
commit e627a8a5e5
No known key found for this signature in database
GPG Key ID: 7D7C8097B62033CE
1 changed files with 1 additions and 1 deletions

View File

@ -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)