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