mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-02-25 10:29:45 +02:00
Fix issue #345
This commit is contained in:
parent
ec63b15dc7
commit
d82aba862b
1 changed files with 4 additions and 0 deletions
|
@ -540,6 +540,7 @@ public class FragmentMastodonTimeline extends Fragment implements StatusAdapter.
|
||||||
timelineParams.maxId = max_id;
|
timelineParams.maxId = max_id;
|
||||||
}
|
}
|
||||||
timelineParams.fetchingMissing = fetchingMissing;
|
timelineParams.fetchingMissing = fetchingMissing;
|
||||||
|
|
||||||
switch (timelineType) {
|
switch (timelineType) {
|
||||||
case LOCAL:
|
case LOCAL:
|
||||||
timelineParams.local = true;
|
timelineParams.local = true;
|
||||||
|
@ -562,6 +563,9 @@ public class FragmentMastodonTimeline extends Fragment implements StatusAdapter.
|
||||||
timelineParams.all = tagTimeline.all;
|
timelineParams.all = tagTimeline.all;
|
||||||
timelineParams.any = tagTimeline.any;
|
timelineParams.any = tagTimeline.any;
|
||||||
timelineParams.hashtagTrim = tagTimeline.name;
|
timelineParams.hashtagTrim = tagTimeline.name;
|
||||||
|
if (timelineParams.hashtagTrim != null && timelineParams.hashtagTrim.startsWith("#")) {
|
||||||
|
timelineParams.hashtagTrim = tagTimeline.name.substring(1);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case REMOTE:
|
case REMOTE:
|
||||||
timelineParams.instance = remoteInstance;
|
timelineParams.instance = remoteInstance;
|
||||||
|
|
Loading…
Reference in a new issue