Почти все работает , только сообщения из конкретного канала на сервере не парсятся выдают вот такую ошибку и указывает на этот элемент кода(знаю что через слэш писать не надо)
Сам код если будет нужно
#kinda influenced by https://github.com/scrubjay55/Reddit_ChatBot_Pytho... (Apache License 2.0)
def _response_loop(self, resp): #thx ToasterUwU for bringing up dummy threads
commandslist = self._after_message_hooks[:] #create a copy
for func in commandslist:
if callable(func):
func(resp)
elif isinstance(func, dict):
function = func['function']
params = func['params'] if 'params' in func else {}
function(resp, **params)
return
Написано
Войдите на сайт
Чтобы задать вопрос и получить на него квалифицированный ответ.
Сам код если будет нужно
#kinda influenced by https://github.com/scrubjay55/Reddit_ChatBot_Pytho... (Apache License 2.0)
def _response_loop(self, resp): #thx ToasterUwU for bringing up dummy threads
commandslist = self._after_message_hooks[:] #create a copy
for func in commandslist:
if callable(func):
func(resp)
elif isinstance(func, dict):
function = func['function']
params = func['params'] if 'params' in func else {}
function(resp, **params)
return