Fixes an issue when replying to a boost

This commit is contained in:
tom79 2017-08-10 14:51:13 +02:00
parent 0135338d47
commit b7eac514aa
1 changed files with 4 additions and 1 deletions

View File

@ -377,7 +377,10 @@ public class StatusListAdapter extends BaseAdapter implements OnPostActionInterf
public void onClick(View v) {
Intent intent = new Intent(context, TootActivity.class);
Bundle b = new Bundle();
b.putParcelable("tootReply", status);
if( status.getReblog() != null )
b.putParcelable("tootReply", status.getReblog());
else
b.putParcelable("tootReply", status);
intent.putExtras(b); //Put your id to your next Intent
context.startActivity(intent);
if( type == RetrieveFeedsAsyncTask.Type.CONTEXT ){