fix when reply bot in group, the bot will send help

This commit is contained in:
2021-01-16 22:40:33 +08:00
parent 8a36f49b49
commit e74c7d70df

View File

@@ -672,6 +672,8 @@ class messageHandle(Thread):
self._main._db.setUserStatus(
self._fromUserId, userStatus.normalStatus)
return
if self._botCommand is None and self._data['chat']['type'] in ['group', 'supergroup']:
return
if self._botCommand is None or self._botCommand not in ['/help', '/rss', '/rsslist']:
self._botCommand = '/help'
di = {'chat_id': self._chatId}