From addc8f24e6c996fe8d839ea6574eed7135cf8eb4 Mon Sep 17 00:00:00 2001 From: Bergbok <66174189+Bergbok@users.noreply.github.com> Date: Thu, 14 Mar 2024 19:02:36 +0200 Subject: [PATCH] Added back auto-play on play button click --- CustomApps/playlist-tags/package.json | 2 +- CustomApps/playlist-tags/src/funcs.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CustomApps/playlist-tags/package.json b/CustomApps/playlist-tags/package.json index 4143843..c3a7e69 100644 --- a/CustomApps/playlist-tags/package.json +++ b/CustomApps/playlist-tags/package.json @@ -1,6 +1,6 @@ { "name": "playlist-tags", - "version": "1.3.0", + "version": "1.3.1", "private": true, "scripts": { "build": "spicetify-creator", diff --git a/CustomApps/playlist-tags/src/funcs.tsx b/CustomApps/playlist-tags/src/funcs.tsx index 9f2e1f0..4ded088 100644 --- a/CustomApps/playlist-tags/src/funcs.tsx +++ b/CustomApps/playlist-tags/src/funcs.tsx @@ -512,6 +512,7 @@ export async function addPlaylistsToQueue(playlists: PlaylistMetadata[], shuffle Spicetify.showNotification('Added ' + track_list.length + ' tracks to queue'); if (track_list.length !== 0) { Spicetify.Player.next(); + Spicetify.Player.play(); } };