diff options
author | kotontrion <[email protected]> | 2024-11-20 13:20:51 +0100 |
---|---|---|
committer | kotontrion <[email protected]> | 2024-11-20 13:20:51 +0100 |
commit | dc4d5a43f35b5bf09cde3f73f0ea03aa6c822c3d (patch) | |
tree | 1aa042786e8da1afed64c170692e72e57223a021 /lib/mpris/ifaces.vala | |
parent | 920e7d2b03e72043f55dbb4bddc020f407748518 (diff) |
mpris: fix typo in dbus property
the property is called SupportedUriSchemes not SupportedUriSchemas
Diffstat (limited to 'lib/mpris/ifaces.vala')
-rw-r--r-- | lib/mpris/ifaces.vala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mpris/ifaces.vala b/lib/mpris/ifaces.vala index 298a288..8755723 100644 --- a/lib/mpris/ifaces.vala +++ b/lib/mpris/ifaces.vala @@ -21,7 +21,7 @@ private interface AstalMpris.IMpris : PropsIface { public abstract bool has_track_list { get; } public abstract string identity { owned get; } public abstract string desktop_entry { owned get; } - public abstract string[] supported_uri_schemas { owned get; } + public abstract string[] supported_uri_schemes { owned get; } public abstract string[] supported_mime_types { owned get; } } |