1
0

add initial channel close dialog

This commit is contained in:
Sander van Grieken
2022-06-29 00:17:17 +02:00
parent 71cd996379
commit e69fc739ca
4 changed files with 185 additions and 17 deletions

View File

@@ -117,7 +117,7 @@ class QEChannelListModel(QAbstractListModel):
def on_channel_updated(self, channel):
i = 0
for c in self.channels:
if c['cid'] == channel.channel_id:
if c['cid'] == channel.channel_id.hex():
self.do_update(i,channel)
break
i = i + 1