mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-06 21:57:48 +01:00
Fix: pass user/pass as strings with OMV proxy (#2555)
This commit is contained in:
@@ -64,7 +64,7 @@ async function tryLogin(widget) {
|
||||
const resp = await rpc(url, {
|
||||
method: "login",
|
||||
service: "session",
|
||||
params: { username, password },
|
||||
params: { username: username.toString(), password: password.toString() },
|
||||
});
|
||||
|
||||
if (resp.status !== 200) {
|
||||
|
||||
Reference in New Issue
Block a user