diff --git a/components/app/AudioPlayerContainer.vue b/components/app/AudioPlayerContainer.vue
index 436d3058..48d0be6d 100644
--- a/components/app/AudioPlayerContainer.vue
+++ b/components/app/AudioPlayerContainer.vue
@@ -269,13 +269,12 @@ export default {
onReady() {
// The UI is reporting elsewhere we are ready
this.isReady = true
-
- // TODO: iOS opens last active playback session on app launch. Should be consistent with Android
- if (this.isIos) {
- this.notifyOnReady()
- }
+ this.notifyOnReady()
},
notifyOnReady() {
+ // TODO: iOS opens last active playback session on app launch. Should be consistent with Android
+ if (!this.isIos) return
+
// If settings aren't loaded yet, native player will receive incorrect settings
console.log('Notify on ready... settingsLoaded:', this.settingsLoaded, 'isReady:', this.isReady)
if (this.settingsLoaded && this.isReady && this.$store.state.isFirstAudioLoad) {
diff --git a/layouts/default.vue b/layouts/default.vue
index a1b69ed1..a8fed1da 100644
--- a/layouts/default.vue
+++ b/layouts/default.vue
@@ -3,6 +3,10 @@