Browse Source

This should fix the problem with displaying replies, as it wasn't

showing as "in reply to".
master
Julio Biason 14 years ago
parent
commit
746887b616
  1. 2
      mitterlib/network/twitter.py

2
mitterlib/network/twitter.py

@ -149,8 +149,8 @@ class TwitterNetworkData(NetworkData):
if 'in_reply_to_status_id' in data and data['in_reply_to_status_id']:
owner = NetworkUser()
owner.username = data['in_reply_to_screen_name']
# TODO: Check if we have the other data.
self.parent = int(data['in_reply_to_status_id'])
self.parent_owner = owner
if 'retweeted_status' in data:
self.reposted_by = self.author

Loading…
Cancel
Save