This commit is contained in:
Mariotaku Lee 2017-04-14 19:45:21 +08:00
parent d9068de940
commit 61f2d7180a
No known key found for this signature in database
GPG Key ID: 15C10F89D7C33535
1 changed files with 5 additions and 1 deletions

View File

@ -106,7 +106,11 @@ object LinkCreator {
if (USER_TYPE_FANFOU_COM == status.account_key.host) {
return getFanfouStatusLink(status.id)
}
return getTwitterStatusLink(status.user_screen_name, status.id)
if (status.is_retweet) {
return getTwitterStatusLink(status.user_screen_name, status.retweet_id)
} else {
return getTwitterStatusLink(status.user_screen_name, status.id)
}
}
fun getQuotedStatusWebLink(status: ParcelableStatus): Uri {