Skip to content

Commit 5f4719c

Browse files
authored
Fix multi reset lyric issue.
후리가나 표시가 활성화된 상태에서, 가사 버튼 클릭 시 재생목록이 초기화되던 문제 수정.
1 parent 601a9d3 commit 5f4719c

File tree

3 files changed

+2
-12
lines changed

3 files changed

+2
-12
lines changed

Utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ const Utils = {
670670
/**
671671
* Current version of the lyrics-plus app
672672
*/
673-
currentVersion: "2.0.0",
673+
currentVersion: "2.0.1",
674674

675675
/**
676676
* Check for updates from remote repository

index.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -238,16 +238,6 @@ if (typeof window.kuromoji === 'undefined') {
238238
window.lyricContainer.forceUpdate();
239239
} catch (e) {}
240240
}
241-
// Also try to refresh by simulating a track change
242-
try {
243-
const currentTrack = Spicetify.Player.data?.item?.uri;
244-
if (currentTrack) {
245-
// Small delay to ensure everything is ready
246-
setTimeout(() => {
247-
Spicetify.Player.playUri(currentTrack);
248-
}, 200);
249-
}
250-
} catch (e) {}
251241
}
252242
})
253243
.catch(err => {});

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

0 commit comments

Comments
 (0)