refactor: dynamically swap activitySubtitle and activityImage if CUSTOM_NAME has been set

This commit is contained in:
changchiyou 2024-03-26 15:45:36 +08:00
parent 5eac5c54f8
commit 427ca4e3f5
No known key found for this signature in database
GPG key ID: 81CA4B8C5DD85821
2 changed files with 15 additions and 17 deletions

View file

@ -1,7 +1,7 @@
import json
import requests
from config import VERSION
from config import VERSION, WEBUI_FAVICON_URL, WEBUI_NAME
def post_webhook(url: str, message: str, event_data: dict) -> bool:
@ -26,8 +26,8 @@ def post_webhook(url: str, message: str, event_data: dict) -> bool:
"sections": [
{
"activityTitle": message,
"activitySubtitle": f"Open WebUI ({VERSION}) - {action}",
"activityImage": "https://openwebui.com/favicon.png",
"activitySubtitle": f"{WEBUI_NAME} ({VERSION}) - {action}",
"activityImage": WEBUI_FAVICON_URL,
"facts": facts,
"markdown": True,
}