Merge pull request #152 from navhaxs/master

Fix for not working 'path' parameter for reverse proxy
This commit is contained in:
Juan 2024-09-29 22:26:37 +02:00 committed by GitHub
commit 4dc54794bd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -142,6 +142,7 @@ class _AddServerModalState extends State<AddServerModal> {
port: portController.text != '' ? int.parse(portController.text) : null,
user: userController.text != "" ? userController.text : null,
password: passwordController.text != "" ? passwordController.text : null,
path: pathController.text != "" ? pathController.text : null,
defaultServer: defaultServer,
authToken: homeAssistant == true
? encodeBase64UserPass(userController.text, passwordController.text)