mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-23 01:00:04 +02:00
Fix issue #273
This commit is contained in:
parent
f8e3a54cb2
commit
1dc3d43669
2 changed files with 4 additions and 4 deletions
|
@ -25,7 +25,7 @@
|
|||
>
|
||||
<activity
|
||||
android:name=".activities.MainActivity"
|
||||
android:configChanges="orientation|screenSize"
|
||||
android:configChanges="orientation|screenSize|keyboardHidden|screenLayout|smallestScreenSize"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
|
|
|
@ -577,7 +577,7 @@ public class PinnedTimelineHelper {
|
|||
}
|
||||
fragTransaction1.detach(fragmentMastodonTimeline).commit();
|
||||
Bundle bundle = new Bundle();
|
||||
bundle.putString(Helper.ARG_REMOTE_INSTANCE, remoteInstance.host != null ? remoteInstance.host : "");
|
||||
bundle.putSerializable(Helper.ARG_REMOTE_INSTANCE, pinned);
|
||||
bundle.putString("instanceType", remoteInstance.type.getValue());
|
||||
bundle.putString("timelineId", remoteInstance.id);
|
||||
bundle.putSerializable(Helper.ARG_TIMELINE_TYPE, Timeline.TimeLineEnum.REMOTE);
|
||||
|
@ -623,7 +623,7 @@ public class PinnedTimelineHelper {
|
|||
currentFilter[0] = remoteInstance.filteredWith;
|
||||
fragTransaction1.detach(fragmentMastodonTimeline).commit();
|
||||
Bundle bundle = new Bundle();
|
||||
bundle.putString(Helper.ARG_REMOTE_INSTANCE, remoteInstance.host != null ? remoteInstance.host : "");
|
||||
bundle.putSerializable(Helper.ARG_REMOTE_INSTANCE, pinned);
|
||||
bundle.putString("instanceType", remoteInstance.type.getValue());
|
||||
bundle.putString("timelineId", remoteInstance.id);
|
||||
bundle.putString("currentfilter", remoteInstance.filteredWith);
|
||||
|
@ -698,7 +698,7 @@ public class PinnedTimelineHelper {
|
|||
return;
|
||||
fragTransaction1.detach(fragmentMastodonTimeline).commit();
|
||||
Bundle bundle = new Bundle();
|
||||
bundle.putString(Helper.ARG_REMOTE_INSTANCE, remoteInstance.host != null ? remoteInstance.host : "");
|
||||
bundle.putSerializable(Helper.ARG_REMOTE_INSTANCE, pinned);
|
||||
bundle.putString("instanceType", remoteInstance.type.getValue());
|
||||
bundle.putString("timelineId", remoteInstance.id);
|
||||
if (currentFilter[0] != null) {
|
||||
|
|
Loading…
Reference in a new issue