Skip to content

Commit

Permalink
Fix ombi configuration validation (#121314)
Browse files Browse the repository at this point in the history
  • Loading branch information
temesinko authored Jul 5, 2024
1 parent a773d0c commit 6e5c390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/ombi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def urlbase(value) -> str:
vol.Optional(CONF_SSL, default=DEFAULT_SSL): cv.boolean,
}
),
cv.has_at_least_one_key("auth"),
cv.has_at_least_one_key(CONF_API_KEY, CONF_PASSWORD),
)
},
extra=vol.ALLOW_EXTRA,
Expand Down

0 comments on commit 6e5c390

Please sign in to comment.