fix(collabora): simplify server_name log condition

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
alexbelgium
2026-07-26 17:28:12 +02:00
parent 6a27361cef
commit dd650156f3

View File

@@ -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