Revert "Merge branch 'main' into develop"

This reverts commit 932ae6c385, reversing
changes made to 150098de59.
This commit is contained in:
Core 2022-03-16 00:04:13 +00:00
parent 182e903fc2
commit 4b0323e267
No known key found for this signature in database
GPG key ID: FE9BF1B547F8F3C6
50 changed files with 19329 additions and 2344 deletions

View file

@ -96,6 +96,9 @@ const wsapi = {
toggleShuffle() {
MusicKit.getInstance().shuffleMode = MusicKit.getInstance().shuffleMode === 0 ? 1 : 0
},
togglePlayPause() {
app.mk.isPlaying ? app.mk.pause() : app.mk.play()
},
toggleRepeat() {
if(MusicKit.getInstance().repeatMode == 0) {
MusicKit.getInstance().repeatMode = 1