Change rate auto-updating
This commit is contained in:
parent
2a1d132293
commit
1f62782714
1 changed files with 2 additions and 2 deletions
|
@ -40,8 +40,8 @@ const MusicKitInterop = {
|
|||
|
||||
if (MusicKit.getInstance().nowPlayingItem) {
|
||||
await this.sleep(1000);
|
||||
console.log("Auto-updating Playback Rate from " + MusicKit.getInstance().playbackRate + " x to " + app.cfg.audio.playbackRate + " x");
|
||||
MusicKit.getInstance().playbackRate = app.cfg.audio.playbackRate;
|
||||
console.log("Auto-updating Playback Rate from " + MusicKit.getInstance().playbackRate + " x to " + app.cfg.audio.playbackRate / 100 + " x");
|
||||
MusicKit.getInstance().playbackRate = app.cfg.audio.playbackRate / 100;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue