Skip to content

Commit

Permalink
MPRIS Plugin: fix property setter on exported player
Browse files Browse the repository at this point in the history
Fix incorrect casing for `Volume` property resulting in value changes
not being emitted over DBus.

closes #888
  • Loading branch information
andyholmes committed Jun 30, 2020
1 parent c2b12f7 commit 80a19a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/plugins/mpris.js
Expand Up @@ -663,7 +663,7 @@ var RemotePlayer = GObject.registerClass({
}

if (state.hasOwnProperty('volume')) {
this.volume = state.volume / 100;
this.Volume = state.volume / 100;
}

if (!this._isPlaying && !this.CanControl) {
Expand Down

0 comments on commit 80a19a8

Please sign in to comment.