1
0
This commit is contained in:
ThomasV
2022-04-27 10:06:05 +02:00
parent e3beae5c00
commit cbeea6e42a

View File

@@ -209,7 +209,8 @@ class Peer(Logger):
if message_type not in ('error', 'warning') and 'channel_id' in payload:
chan = self.get_channel_by_id(payload['channel_id'])
if chan is None:
raise Exception('Got unknown '+ message_type)
self.logger.info(f"Received {message_type} for unknown channel {payload['channel_id'].hex()}")
return
args = (chan, payload)
else:
args = (payload,)