outposts: fix error on outpost disconnect

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-05-20 18:07:07 +02:00
parent be5a6c0310
commit 9a48c2fd9a
1 changed files with 3 additions and 2 deletions

View File

@ -65,6 +65,7 @@ class OutpostConsumer(AuthJsonConsumer):
def disconnect(self, close_code): def disconnect(self, close_code):
if self.outpost and self.last_uid: if self.outpost and self.last_uid:
state = OutpostState.for_instance_uid(self.outpost, self.last_uid) state = OutpostState.for_instance_uid(self.outpost, self.last_uid)
if self.channel_name in state.channel_ids:
state.channel_ids.remove(self.channel_name) state.channel_ids.remove(self.channel_name)
state.save() state.save()
LOGGER.debug( LOGGER.debug(