Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion fbridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ def onMessage(self, author_id, message_object, thread_id, thread_type, **kwargs)
if author_id in users:
username = users[author_id]
else:
username = author_id
u = self.fetchUserInfo(author_id)[author_id]
username = u.name
users[author_id] = username

## Set a gateway from the thread_id
gateway = "FBgateway"
Expand Down