mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-22 06:49:11 +00:00
Fix missing 'path' in serverObj
This commit is contained in:
parent
9096367843
commit
a36335ef92
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
Reference in a new issue