Skip to content

Commit

Permalink
fix: bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
qier222 committed Jan 28, 2023
1 parent 622f954 commit 2f452db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/Player.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export default class {
}
set volume(volume) {
this._volume = volume;
this._howler?.volume(volume)
this._howler?.volume(volume);
}
get list() {
return this.shuffle ? this._shuffledList : this._list;
Expand Down Expand Up @@ -437,7 +437,7 @@ export default class {
'unblock-music',
store.state.settings.unmSource,
track,
/** @type {import("@unblockneteasemusic/rust-napi").Context} */ ({
/** @type {import("@unblockneteasemusic/rust-napi").Context} */({
enableFlac: store.state.settings.unmEnableFlac || null,
proxyUri: store.state.settings.unmProxyUri || null,
searchMode: determineSearchMode(store.state.settings.unmSearchMode),
Expand Down

0 comments on commit 2f452db

Please sign in to comment.