mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 16:50:04 +02:00
Fix issue #432 - Wrong URL when sharing a boost.
This commit is contained in:
parent
4d27fd47a1
commit
22f390c659
1 changed files with 2 additions and 2 deletions
|
@ -1932,9 +1932,9 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
|||
String url;
|
||||
|
||||
if (statusToDeal.uri.startsWith("http"))
|
||||
url = status.uri;
|
||||
url = statusToDeal.uri;
|
||||
else
|
||||
url = status.url;
|
||||
url = statusToDeal.url;
|
||||
String extra_text;
|
||||
if (share_details) {
|
||||
extra_text = statusToDeal.account.acct;
|
||||
|
|
Loading…
Reference in a new issue