mirror of
https://github.com/TwidereProject/Twidere-Android
synced 2025-02-01 09:16:47 +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) {
|
if (USER_TYPE_FANFOU_COM == status.account_key.host) {
|
||||||
return getFanfouStatusLink(status.id)
|
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 {
|
fun getQuotedStatusWebLink(status: ParcelableStatus): Uri {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user