diff --git a/HellionChat/Plugin.cs b/HellionChat/Plugin.cs index 717e3fc..2863e82 100755 --- a/HellionChat/Plugin.cs +++ b/HellionChat/Plugin.cs @@ -168,8 +168,8 @@ public sealed class Plugin : IAsyncDalamudPlugin if (Config.Version < 16) { throw new InvalidOperationException( - $"HellionChat v1.4.5 requires config schema v16, got v{Config.Version}. " - + "Please install v1.4.2 first to migrate the configuration, then upgrade to v1.4.5." + $"HellionChat v1.4.6 requires config schema v16, got v{Config.Version}. " + + "Please install v1.4.2 first to migrate the configuration, then upgrade to v1.4.6." ); } diff --git a/HellionChat/Util/UrlValidation.cs b/HellionChat/Util/UrlValidation.cs index 98d49b7..279ce45 100644 --- a/HellionChat/Util/UrlValidation.cs +++ b/HellionChat/Util/UrlValidation.cs @@ -14,9 +14,7 @@ internal static class UrlValidation || (uri.Scheme is not "https" and not "http") ) { - throw new InvalidOperationException( - $"{source} contains malformed URL: {url}" - ); + throw new InvalidOperationException($"{source} contains malformed URL: {url}"); } } }