Partially fixed names in DMs
This commit is contained in:
parent
5c7798398b
commit
26af23b37c
3
TODO
3
TODO
|
@ -11,5 +11,6 @@ features:
|
|||
|
||||
bugs:
|
||||
|
||||
* Direct Messages have no names
|
||||
* Direct Messages have no names, only screen names (may not be fixable without
|
||||
considerable tweets to python-twitter)
|
||||
* single-tweet tabs will not persist properly
|
||||
|
|
|
@ -433,7 +433,7 @@ class MyTwitter():
|
|||
status = Status()
|
||||
status.id = dm.id
|
||||
status.user = User()
|
||||
status.user.screen_name = dm.sender.screen_name
|
||||
status.user.screen_name = dm.sender_screen_name
|
||||
status.user.name = dm.sender.name
|
||||
status.created_at = dm.created_at
|
||||
status.text = dm.text
|
||||
|
|
Reference in New Issue
Block a user