mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-08 18:54:26 -04:00
Add missing base64 conversion
This commit is contained in:
parent
1e2050f106
commit
139807719c
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user