Add time-based media group merging for RSS and HTML generation

This commit is contained in:
vvzvlad
2025-02-09 21:44:55 +03:00
parent c554bd4c44
commit 67d52b507a
4 changed files with 116 additions and 27 deletions
+2 -1
View File
@@ -11,5 +11,6 @@ def get_settings():
"pyrogram_bridge_url": os.getenv("PYROGRAM_BRIDGE_URL", ""),
"log_level": os.getenv("LOG_LEVEL", "INFO"),
"debug": os.getenv("DEBUG", "False") == "True",
"token": os.getenv("TOKEN", "")
"token": os.getenv("TOKEN", ""),
"time_based_merge": os.getenv("TIME_BASED_MERGE", "False") == "True",
}