diff --git a/src/components/application/plexbrowser/plexcontent.vue b/src/components/application/plexbrowser/plexcontent.vue
index 88b190e7..73674a81 100644
--- a/src/components/application/plexbrowser/plexcontent.vue
+++ b/src/components/application/plexbrowser/plexcontent.vue
@@ -97,9 +97,9 @@
Manual sync
@@ -261,7 +261,7 @@
block
style="background-color: #cc3f3f"
class="white--text"
- @click.native="PRESS_STOP"
+ @click="PRESS_STOP"
>
Stop
@@ -271,9 +271,9 @@
Manual sync
@@ -395,7 +395,7 @@
@@ -422,7 +422,7 @@
@@ -548,16 +548,13 @@ export default {
...mapGetters('synclounge', [
'AM_I_HOST',
+ 'IS_MANUAL_SYNC_QUEUED',
]),
server() {
return this.GET_PLEX_SERVER(this.GET_ACTIVE_SERVER_ID);
},
- manualSyncQueued() {
- return this.$store.state.manualSyncQueued;
- },
-
hidden() {
if (this.hiddenOverride) {
return false;
@@ -652,6 +649,10 @@ export default {
'SET_ACTIVE_METADATA',
]),
+ ...mapMutations('synclounge', [
+ 'SET_IS_MANUAL_SYNC_QUEUED',
+ ]),
+
async getNewData() {
this.contents = await this.FETCH_PLEX_METADATA({
ratingKey: this.ratingKey,
@@ -678,10 +679,6 @@ export default {
this.setBackground();
},
- doManualSync() {
- this.$store.commit('SET_VALUE', ['manualSyncQueued', true]);
- },
-
getLittleThumb(content) {
return this.GET_MEDIA_IMAGE_URL({
machineIdentifier: this.machineIdentifier,
diff --git a/src/components/application/slplayer.vue b/src/components/application/slplayer.vue
index fe557b67..a35e5e46 100644
--- a/src/components/application/slplayer.vue
+++ b/src/components/application/slplayer.vue
@@ -79,8 +79,8 @@
compare_arrows
@@ -158,9 +158,9 @@
Manual sync
@@ -170,7 +170,7 @@
Playback Settings
@@ -180,7 +180,7 @@
Stop playback
@@ -193,9 +193,7 @@