mirror of
https://github.com/TwidereProject/Twidere-Android
synced 2025-01-20 20:18:35 +01:00
fixed #759
This commit is contained in:
parent
d9068de940
commit
61f2d7180a
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user