Merge voice 1 #8

Merged
KerradKerridi merged 8 commits from merge-voice-1 into master 2025-08-26 15:57:54 +00:00
Showing only changes of commit 47c5b2f083 - Show all commits

View File

@@ -751,7 +751,7 @@ class BotDB:
self.connect()
self.cursor.execute("SELECT emoji FROM our_users WHERE user_id = ?", (user_id,))
pre_result = self.cursor.fetchone()
if pre_result[0] is not None:
if pre_result is not None:
print(f'Результат функции check_emoji_for_user - {str(pre_result[0])}')
return str(pre_result[0])
else: