It's version 0.8.3 bug fix ТЕПЕРЬ УЖ точно восстановлена система слежения расписания

This commit is contained in:
Niken
2026-05-20 22:35:42 +03:00
parent bbd9c839d5
commit c0edc77a11
8 changed files with 82 additions and 27 deletions
+6
View File
@@ -4,6 +4,8 @@ from config import Config
def save_message(chat_id: int, message_id: int):
if Config.DISABLE_STORAGE:
return
if True:
return
from .DB import get_db
db = get_db()
@@ -17,6 +19,8 @@ def save_message(chat_id: int, message_id: int):
def load_messages():
if Config.DISABLE_STORAGE:
return []
if True:
return []
from .DB import get_db
db = get_db()
@@ -31,6 +35,8 @@ def load_messages():
def clear_messages():
if Config.DISABLE_STORAGE:
return
if True:
return
from .DB import get_db
db = get_db()