mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
little fixes for JustAMan
This commit is contained in:
@@ -132,8 +132,7 @@ namespace Emby.Server.Implementations.Cryptography
|
|||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
iterations = defaultiterations;
|
throw new InvalidDataException($"Couldn't successfully parse iterations value from string: {hash.Parameters["iterations"]}", e);
|
||||||
throw new Exception($"Couldn't successfully parse iterations value from string:{hash.Parameters["iterations"]}", e);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return PBKDF2(hash.Id, hash.HashBytes, hash.SaltBytes, iterations);
|
return PBKDF2(hash.Id, hash.HashBytes, hash.SaltBytes, iterations);
|
||||||
|
|||||||
Reference in New Issue
Block a user