Fix path to public chat room

This commit is contained in:
Ana Custura 2026-03-06 08:57:58 +00:00
parent 9601597b5a
commit 0cfd475031

View file

@ -96,7 +96,7 @@ def index():
if enable_deltachat == 'true': if enable_deltachat == 'true':
service_array.append({"name": "Secure Messaging", "image": url_for("static", filename="images/deltachat-icon.svg"), "url": url_for("messaging") }) service_array.append({"name": "Secure Messaging", "image": url_for("static", filename="images/deltachat-icon.svg"), "url": url_for("messaging") })
if enable_chat == 'true': if enable_chat == 'true':
service_array.append({"name": "Message Board", "image": url_for("static", filename="images/chat-icon.png"), "url": app.config["CONVENE_INSTALL_PATH"] }) service_array.append({"name": "Message Board", "image": url_for("static", filename="images/chat-icon.png"), "url": f"{app.config["CONVENE_INSTALL_PATH"]}/#/room/%23public%3a{get_setting('butterbox_hostname')}.lan"})
if enable_app_store == 'true' and usb_has_appstore: if enable_app_store == 'true' and usb_has_appstore:
service_array.append({"name": "Apps", "image": url_for("static", filename="images/appstore-icon.svg")}) service_array.append({"name": "Apps", "image": url_for("static", filename="images/appstore-icon.svg")})
if enable_map_viewer == 'true' and usb_has_maps: if enable_map_viewer == 'true' and usb_has_maps: