cleanup: Use deepUnpack() intead of deep_unpack()
deep_unpack() is just a backwards compability alias for deepUnpack()[1].
The new name makes it more clear that this is not a C function, start to
use it.
[1] 13e662a29d
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2416>
This commit is contained in:

committed by
Marge Bot

parent
ade4b23796
commit
b63c6ac0ef
@ -187,7 +187,7 @@ var MprisPlayer = class MprisPlayer extends Signals.EventEmitter {
|
||||
_updateState() {
|
||||
let metadata = {};
|
||||
for (let prop in this._playerProxy.Metadata)
|
||||
metadata[prop] = this._playerProxy.Metadata[prop].deep_unpack();
|
||||
metadata[prop] = this._playerProxy.Metadata[prop].deepUnpack();
|
||||
|
||||
// Validate according to the spec; some clients send buggy metadata:
|
||||
// https://www.freedesktop.org/wiki/Specifications/mpris-spec/metadata
|
||||
|
Reference in New Issue
Block a user