Issue #903 - fix issue when jumping to art timeline a tag timeline

This commit is contained in:
tom79 2019-04-27 10:03:33 +02:00
parent 8de1fdaef8
commit 9b9afb8f69
2 changed files with 2 additions and 1 deletions

View File

@ -1544,6 +1544,7 @@ public class API {
if( onlymedia)
params.put("only_media", Boolean.toString(true));
if( any != null && any.size() > 0) {
StringBuilder parameters = new StringBuilder();
for (String a : any) {

View File

@ -778,7 +778,7 @@ public class ManageTimelines {
return;
fragTransaction.detach(displayStatusFragment);
Bundle bundle = new Bundle();
bundle.putString("tag", tag);
bundle.putString("tag", tl.getTagTimeline().getName());
bundle.putInt("timelineId", tl.getId());
bundle.putSerializable("type", RetrieveFeedsAsyncTask.Type.TAG);
if( mediaOnly[0])