Loading app/src/main/java/app/fedilab/android/ui/drawer/ComposeAdapter.java +3 −0 Original line number Diff line number Diff line Loading @@ -411,6 +411,9 @@ public class ComposeAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder */ public void addSharing(String url, String title, String description, String subject, String content, String saveFilePath) { int position = statusList.size() - 1; if (description == null && content == null) { return; } if (title != null || subject != null) { statusList.get(position).text = title != null ? title : subject; statusList.get(position).text += "\n\n"; Loading Loading
app/src/main/java/app/fedilab/android/ui/drawer/ComposeAdapter.java +3 −0 Original line number Diff line number Diff line Loading @@ -411,6 +411,9 @@ public class ComposeAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder */ public void addSharing(String url, String title, String description, String subject, String content, String saveFilePath) { int position = statusList.size() - 1; if (description == null && content == null) { return; } if (title != null || subject != null) { statusList.get(position).text = title != null ? title : subject; statusList.get(position).text += "\n\n"; Loading