removed list and rstrip
This commit is contained in:
@@ -800,7 +800,7 @@ class Client(object):
|
|||||||
elif k['thread_type'] == 3:
|
elif k['thread_type'] == 3:
|
||||||
entries.append(Room(
|
entries.append(Room(
|
||||||
k['thread_fbid'],
|
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'],
|
photo = k['image_src'],
|
||||||
name = k['name'],
|
name = k['name'],
|
||||||
message_count = k['message_count'],
|
message_count = k['message_count'],
|
||||||
|
Reference in New Issue
Block a user