Fix we use check sell_noti not noti

This commit is contained in:
Kamontat Chantrachirathumrong 2021-05-30 21:07:44 +07:00 committed by GitHub
parent a81a672ffe
commit 806838c3af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -240,8 +240,8 @@ class Telegram(RPCHandler):
if msg_type == RPCMessageType.SELL:
sell_noti = self._config['telegram'] \
.get('notification_settings', {}).get(str(msg_type), {})
# For backward compatibility sell still be string
if isinstance(noti, str):
# For backward compatibility sell still can be string
if isinstance(sell_noti, str):
noti = sell_noti
else:
noti = sell_noti.get(str(msg['sell_reason']), default_noti)