mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-06-11 00:49:36 +00:00
Merge pull request #152 from navhaxs/master
Fix for not working 'path' parameter for reverse proxy
This commit is contained in:
commit
4dc54794bd
1 changed files with 1 additions and 0 deletions
|
@ -142,6 +142,7 @@ class _AddServerModalState extends State<AddServerModal> {
|
||||||
port: portController.text != '' ? int.parse(portController.text) : null,
|
port: portController.text != '' ? int.parse(portController.text) : null,
|
||||||
user: userController.text != "" ? userController.text : null,
|
user: userController.text != "" ? userController.text : null,
|
||||||
password: passwordController.text != "" ? passwordController.text : null,
|
password: passwordController.text != "" ? passwordController.text : null,
|
||||||
|
path: pathController.text != "" ? pathController.text : null,
|
||||||
defaultServer: defaultServer,
|
defaultServer: defaultServer,
|
||||||
authToken: homeAssistant == true
|
authToken: homeAssistant == true
|
||||||
? encodeBase64UserPass(userController.text, passwordController.text)
|
? encodeBase64UserPass(userController.text, passwordController.text)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue