This commit is contained in:
Alexey Polyakov
2026-05-05 23:08:02 +03:00
parent bcd94b3a57
commit 1ff974dfce
3 changed files with 0 additions and 10 deletions

View File

@@ -3,7 +3,6 @@ from .auth import AuthProcessors
from .search import SearchProcessors from .search import SearchProcessors
from .history import HistoryProcessors from .history import HistoryProcessors
from .assets import AssetsProcessors from .assets import AssetsProcessors
from .calls import CallsProcessors
from .chats import ChatsProcessors from .chats import ChatsProcessors
from .contacts import ContactsProcessors from .contacts import ContactsProcessors
from .messages import MessagesProcessors from .messages import MessagesProcessors
@@ -14,7 +13,6 @@ class Processors(MainProcessors,
SearchProcessors, SearchProcessors,
HistoryProcessors, HistoryProcessors,
AssetsProcessors, AssetsProcessors,
CallsProcessors,
ChatsProcessors, ChatsProcessors,
ContactsProcessors, ContactsProcessors,
MessagesProcessors, MessagesProcessors,

View File

@@ -150,10 +150,6 @@ class TamTamMobile:
await self.auth_required( await self.auth_required(
userPhone, self.processors.chat_info, payload, seq, writer, userId userPhone, self.processors.chat_info, payload, seq, writer, userId
) )
case self.opcodes.OK_TOKEN:
await self.auth_required(
userPhone, self.processors.ok_token, payload, seq, writer
)
case self.opcodes.CONTACT_LIST: case self.opcodes.CONTACT_LIST:
await self.auth_required( await self.auth_required(
userPhone, self.processors.contact_list, payload, seq, writer, userId userPhone, self.processors.contact_list, payload, seq, writer, userId

View File

@@ -136,10 +136,6 @@ class TamTamWS:
await self.auth_required( await self.auth_required(
userPhone, self.processors.chat_info, payload, seq, websocket, userId userPhone, self.processors.chat_info, payload, seq, websocket, userId
) )
case self.opcodes.OK_TOKEN:
await self.auth_required(
userPhone, self.processors.ok_token, payload, seq, websocket
)
case self.opcodes.CONTACT_LIST: case self.opcodes.CONTACT_LIST:
await self.auth_required( await self.auth_required(
userPhone, self.processors.contact_list, payload, seq, websocket, userId userPhone, self.processors.contact_list, payload, seq, websocket, userId