mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08: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, {
|
const resp = await rpc(url, {
|
||||||
method: "login",
|
method: "login",
|
||||||
service: "session",
|
service: "session",
|
||||||
params: { username, password },
|
params: { username: username.toString(), password: password.toString() },
|
||||||
});
|
});
|
||||||
|
|
||||||
if (resp.status !== 200) {
|
if (resp.status !== 200) {
|
||||||
|
|||||||
Reference in New Issue
Block a user