diff --git a/Runtime/Algorand.Unity/Http/UnityHttpClient.cs b/Runtime/Algorand.Unity/Http/UnityHttpClient.cs index b9b404159..89456541a 100644 --- a/Runtime/Algorand.Unity/Http/UnityHttpClient.cs +++ b/Runtime/Algorand.Unity/Http/UnityHttpClient.cs @@ -61,8 +61,8 @@ public UnityHttpClient( private static Uri FormatAddress(string address) { - if (!address.EndsWith('/')) - address += '/'; + if (!address.EndsWith("/")) + address += "/"; var addressUri = new Uri(address); if (!addressUri.IsAbsoluteUri) throw new ArgumentException("Given host must be an absolute path.", nameof(address));