mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-09-05 09:23:33 +02:00
fix(collabora): simplify server_name log condition
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -52,7 +52,7 @@ elif bashio::config.has_value 'domain1'; then
|
||||
export server_name
|
||||
bashio::log.warning "domain1 is deprecated, please use server_name instead"
|
||||
fi
|
||||
if bashio::config.has_value 'server_name' || bashio::config.has_value 'domain1'; then
|
||||
if [ -n "${server_name:-}" ]; then
|
||||
bashio::log.info "Collabora public hostname (server_name): ${server_name}"
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user