fix: import is_uid_processed instead of is_uids_processed

This commit is contained in:
2026-07-15 18:25:57 +08:00
parent d42022cc2e
commit 17514302f9

View File

@@ -9,7 +9,7 @@ from concurrent.futures import ThreadPoolExecutor
from src.config import load_config
from src.summarizer import poll_accounts, ai_process, tg_send_and_mark
from src.tg_bot import poll_telegram, send_thinking
from src.database import init_db, is_uids_processed, mark_fetched, mark_processing, mark_sent, mark_failed
from src.database import init_db, is_uid_processed, mark_fetched, mark_processing, mark_sent, mark_failed
# Thread-safe logging: all log records go through a single QueueListener thread
_log_queue = queue_module.Queue(-1)