From dc4d5a43f35b5bf09cde3f73f0ea03aa6c822c3d Mon Sep 17 00:00:00 2001 From: kotontrion Date: Wed, 20 Nov 2024 13:20:51 +0100 Subject: mpris: fix typo in dbus property the property is called SupportedUriSchemes not SupportedUriSchemas --- lib/mpris/player.vala | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/mpris/player.vala') diff --git a/lib/mpris/player.vala b/lib/mpris/player.vala index 2050f61..c69eb21 100644 --- a/lib/mpris/player.vala +++ b/lib/mpris/player.vala @@ -87,7 +87,7 @@ public class AstalMpris.Player : Object { * Almost every media player will include support for the "file" scheme. * Other common schemes are "http" and "rtsp". */ - public string[] supported_uri_schemas { owned get; private set; } + public string[] supported_uri_schemes { owned get; private set; } /** * The mime-types supported by the player. @@ -160,7 +160,7 @@ public class AstalMpris.Player : Object { } /** - * uri scheme should be an element of [property@AstalMpris.Player:supported_uri_schemas] + * uri scheme should be an element of [property@AstalMpris.Player:supported_uri_schemes] * and the mime-type should match one of the elements of [property@AstalMpris.Player:supported_mime_types]. * * @param uri Uri of the track to load. @@ -425,7 +425,7 @@ public class AstalMpris.Player : Object { // has_track_list = proxy.has_track_list; identity = proxy.identity; entry = proxy.desktop_entry; - supported_uri_schemas = proxy.supported_uri_schemas; + supported_uri_schemes = proxy.supported_uri_schemes; supported_mime_types = proxy.supported_mime_types; if (position >= 0) -- cgit v1.2.3