[rygel] external: Use audio.music as specified in spec
- From: Jens Georg <jensgeorg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [rygel] external: Use audio.music as specified in spec
- Date: Tue, 9 Oct 2012 05:08:54 +0000 (UTC)
commit 198df21122baa3c7f51187c3d3c4c551b2d8e3ac
Author: Jens Georg <mail jensge org>
Date: Fri Apr 27 20:36:52 2012 +0200
external: Use audio.music as specified in spec
We still keep "music" as everyone else seems to be using it now.
https://bugzilla.gnome.org/show_bug.cgi?id=674738
.../external/rygel-external-item-factory.vala | 13 +++++++------
1 files changed, 7 insertions(+), 6 deletions(-)
---
diff --git a/src/plugins/external/rygel-external-item-factory.vala b/src/plugins/external/rygel-external-item-factory.vala
index 78cbc1a..bd471cf 100644
--- a/src/plugins/external/rygel-external-item-factory.vala
+++ b/src/plugins/external/rygel-external-item-factory.vala
@@ -38,17 +38,18 @@ public class Rygel.External.ItemFactory {
throws IOError, DBusError {
MediaItem item;
- if (type.has_prefix ("audio")) {
- item = new AudioItem (id, parent, title);
-
- this.set_audio_metadata (item as AudioItem, props, service_name);
- } else if (type.has_prefix ("music")) {
+ if (type.has_prefix ("music") ||
+ type.has_prefix ("audio.music")) {
item = new MusicItem (id, parent, title);
yield this.set_music_metadata (item as MusicItem,
props,
service_name);
- } else if (type.has_prefix ("video")) {
+ } else if (type.has_prefix ("audio")) {
+ item = new AudioItem (id, parent, title);
+
+ this.set_audio_metadata (item as AudioItem, props, service_name);
+ } else if (type.has_prefix ("video")) {
item = new VideoItem (id, parent, title);
yield this.set_video_metadata (item as VideoItem,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]