removed list and rstrip

This commit is contained in:
ekohilas
2017-10-07 18:09:24 +11:00
parent 730bab5d40
commit eae1db9c7d

View File

@@ -800,7 +800,7 @@ class Client(object):
elif k['thread_type'] == 3:
entries.append(Room(
k['thread_fbid'],
participants = set(p.strip('fbid:') for p in k['participants']),
participants = set(p.lstrip('fbid:') for p in k['participants']),
photo = k['image_src'],
name = k['name'],
message_count = k['message_count'],