ReadKit sends the md5 hash of the password in uppercase (#1602)

This commit is contained in:
Athou
2025-12-30 20:15:29 +01:00
parent 7ac5876d2d
commit 3bf4a004d4

View File

@@ -95,7 +95,7 @@ public class UserService {
}
String computedFeverApiKey = Digests.md5Hex(user.getName() + ":" + user.getApiKey());
if (!computedFeverApiKey.equals(feverApiKey)) {
if (!computedFeverApiKey.equalsIgnoreCase(feverApiKey)) {
return Optional.empty();
}