Fix issue with videos with reblogs

This commit is contained in:
tom79 2019-10-20 10:49:44 +02:00
parent c4f286cb78
commit e095bcbb9e
1 changed files with 5 additions and 1 deletions

View File

@ -2624,7 +2624,11 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
}
}
}
status.setWebviewURL(url);
if( status.getReblog() == null) {
status.setWebviewURL(url);
}else{
status.getReblog().setWebviewURL(url);
}
notifyStatusChanged(status);
}
});