mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-15 22:56:18 +00:00
Add missing base64 conversion
This commit is contained in:
@@ -69,7 +69,7 @@ namespace MediaBrowser.MediaEncoding.Subtitles
|
||||
private static string EncodePassword(string password)
|
||||
{
|
||||
var bytes = Encoding.UTF8.GetBytes(password);
|
||||
return PasswordHashPrefix + bytes;
|
||||
return PasswordHashPrefix + Convert.ToBase64String(bytes);
|
||||
}
|
||||
|
||||
private static string DecodePassword(string password)
|
||||
|
||||
Reference in New Issue
Block a user