Commit c89cabdc authored by Thomas's avatar Thomas
Browse files

some changes

parent f2c42de0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
    </queries>
    <application
        android:name="app.fedilab.android.MainApplication"
        android:allowBackup="false"
        android:allowBackup="true"
        android:dataExtractionRules="@xml/extraction_rules"
        android:fullBackupContent="@xml/backup_rules"
        android:configChanges="orientation|screenSize"
+4 −4
Original line number Diff line number Diff line
@@ -243,7 +243,7 @@ public abstract class BaseMainActivity extends BaseActivity implements NetworkSt
            if (b != null) {
                if (b.getBoolean(Helper.RECEIVE_REDRAW_TOPBAR, false)) {
                    List<MastodonList> mastodonLists = (List<MastodonList>) b.getSerializable(Helper.RECEIVE_MASTODON_LIST);
                    if (mastodonLists.size() == 0) {
                    if (mastodonLists != null && mastodonLists.size() == 0) {
                        mastodonLists = null;
                    }
                    redrawPinned(mastodonLists);
@@ -1228,7 +1228,7 @@ public abstract class BaseMainActivity extends BaseActivity implements NetworkSt
                            //Fetch remote lists for the authenticated account and update them
                            new ViewModelProvider(BaseMainActivity.this).get(TimelinesVM.class).getLists(currentInstance, currentToken)
                                    .observe(this, mastodonLists -> {
                                                if (mastodonLists.size() == 0) {
                                        if (mastodonLists != null && mastodonLists.size() == 0) {
                                            mastodonLists = null;
                                        }
                                                PinnedTimelineHelper.redrawTopBarPinned(BaseMainActivity.this, binding, pinned, bottomMenu, mastodonLists);