Fix password login to send empty string instead of null to support passwordless root user login

This commit is contained in:
advplyr 2023-11-25 11:17:35 -06:00
parent 2bfe548c52
commit 5c60cd136c

View file

@ -568,7 +568,7 @@ export default {
})
},
requestServerLogin() {
return this.postRequest(`${this.serverConfig.address}/login`, { username: this.serverConfig.username, password: this.password }, this.serverConfig.customHeaders, 20000)
return this.postRequest(`${this.serverConfig.address}/login`, { username: this.serverConfig.username, password: this.password || '' }, this.serverConfig.customHeaders, 20000)
.then((data) => {
if (!data.user) {
console.error(data.error)