Explorar o código

Correct bad quote characters

Joshua Boniface %!s(int64=6) %!d(string=hai) anos
pai
achega
f0fbd0232c

+ 1 - 1
Emby.Server.Implementations/Library/DefaultPasswordResetProvider.cs

@@ -53,7 +53,7 @@ namespace Emby.Server.Implementations.Library
                 {
                     File.Delete(resetfile);
                 }
-                else if (spr.Pin.Replace('-', '').Equals(pin.Replace('-', ''), StringComparison.InvariantCultureIgnoreCase))
+                else if (spr.Pin.Replace("-", "").Equals(pin.Replace("-", ""), StringComparison.InvariantCultureIgnoreCase))
                 {
                     var resetUser = _userManager.GetUserByName(spr.UserName);
                     if (resetUser == null)