Skip to content

Commit

Permalink
ui
Browse files Browse the repository at this point in the history
  • Loading branch information
donavanbecker committed Jan 22, 2024
1 parent fcb69f9 commit 6d12cf9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"port": {
"type": "string",
"title": "Login UI Port",
"placeholder": "8585",
"default": "8585",
"description": "Port for the Homebridge Resideo UI. Default is 8585.",
"x-schema-form": {
Expand Down
2 changes: 1 addition & 1 deletion src/homebridge-ui/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ <h5>Disclaimer</h5>
try {
const currentConfig = await homebridge.getPluginConfig()
const hostname = window.location.hostname
const port = currentConfig[0].port
const port = currentConfig[0].port || '8585'
try {
await homebridge.request('Start Resideo Login Server')
} catch (err) {
Expand Down

0 comments on commit 6d12cf9

Please sign in to comment.