feat: Update version to v1.1.2

This commit is contained in:
shiyu
2025-08-30 15:39:05 +08:00
parent 83aaa7a052
commit 3f3f192d53
2 changed files with 1 additions and 2 deletions

View File

@@ -70,7 +70,6 @@ class TelegramAdapter:
await client.connect()
messages = await client.get_messages(self.chat_id, limit=50)
for message in messages:
print(message)
if message and (message.document or message.video):
media = message.document or message.video
filename = None

View File

@@ -4,7 +4,7 @@ from typing import Any, Optional, Dict
from dotenv import load_dotenv
from models.database import Configuration
load_dotenv(dotenv_path=".env")
VERSION = "v1.1.1"
VERSION = "v1.1.2"
class ConfigCenter:
_cache: Dict[str, Any] = {}