1
0
mirror of https://github.com/nvllsvm/Audinaut synced 2025-02-16 11:31:21 +01:00

Revert "Remove unused"

This reverts commit a3344941865ba711ee385cb18e939ea52b0646ce.
This commit is contained in:
Andrew Rabert 2019-11-27 18:12:16 -05:00
parent 5e34f2d8e9
commit 2ca504d7e9

View File

@ -65,6 +65,7 @@ import java.util.List;
public class SubsonicFragmentActivity extends SubsonicActivity implements DownloadService.OnSongChangedListener {
private static boolean infoDialogDisplayed;
private static boolean sessionInitialized = false;
private boolean resuming = false;
private NowPlayingFragment nowPlayingFragment;
private SubsonicFragment secondaryFragment;
private Toolbar mainToolbar;
@ -276,6 +277,7 @@ public class SubsonicFragmentActivity extends SubsonicActivity implements Downlo
@Override
public void onResume() {
resuming = true;
super.onResume();
if (getIntent().hasExtra(Constants.INTENT_EXTRA_VIEW_ALBUM)) {
@ -299,6 +301,7 @@ public class SubsonicFragmentActivity extends SubsonicActivity implements Downlo
UserUtil.seedCurrentUser(this);
createAccount();
runWhenServiceAvailable(() -> getDownloadService().addOnSongChangedListener(SubsonicFragmentActivity.this));
resuming = false;
}
@Override