- Custom Sharing feature fix string compatibility with Crowdin

This commit is contained in:
crockwave 2019-02-17 10:52:59 -06:00
parent b67326d527
commit 5b602817f4
1 changed files with 1 additions and 1 deletions

View File

@ -2259,7 +2259,7 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
bCustomSharing.putString("source", status.getReblog().getAccount().getDisplay_name());
bCustomSharing.putString("id", status.getReblog().getId());
bCustomSharing.putString("tags", status.getReblog().getTagsString());
bCustomSharing.putString("content", status.getReblog().getContentSpan().toString());
bCustomSharing.putString("content", status.getContentSpan().toString());
} else {
bCustomSharing.putString("url", status.getUrl());
bCustomSharing.putString("source", status.getAccount().getDisplay_name());