fix op25.liq generation
Some checks failed
Lint / lint (push) Failing after 6s
release-tag / release-image (push) Failing after 16s

This commit is contained in:
Logan Cusano
2025-10-23 02:54:30 -04:00
parent d7b691cba5
commit 0db514f0fd

View File

@@ -13,7 +13,7 @@ def generate_liquid_script(config: IcecastConfig):
Keys should match the variable names in the template (e.g., 'icecast_host').
"""
try:
content = liquidsoap_config_template
content = liquidsoap_config_template.model_dump()
# Replace variables
for key, value in config.items():
placeholder = f"${{{key}}}"