mirror of
https://github.com/jxxghp/MoviePilot-Plugins.git
synced 2026-05-23 23:16:47 +00:00
当标题和文本都为空时,使用空字符代替空字符串,以避免自动生成 “triggered” 文本。
- 将 `title = msg_body.get("title") or ""` 修改为 `title = msg_body.get("title") or "\u200b"`
- 将 `text = msg_body.get("text") or ""` 修改为 `text = msg_body.get("text") or "\u200b"`