[rygel/rygel-0-24] server: Call the base class in apply_didl_lite



commit 4a4c896a96c3c86206a673b290ea6866f7d11f27
Author: Richard Röjfors <richard rojfors gmail com>
Date:   Sat Oct 4 02:09:02 2014 +0200

    server: Call the base class in apply_didl_lite
    
    Otherwise the didl lite is not applied to the parents members.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=737867

 src/librygel-server/rygel-audio-item.vala |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)
---
diff --git a/src/librygel-server/rygel-audio-item.vala b/src/librygel-server/rygel-audio-item.vala
index 3854335..5593074 100644
--- a/src/librygel-server/rygel-audio-item.vala
+++ b/src/librygel-server/rygel-audio-item.vala
@@ -80,6 +80,8 @@ public class Rygel.AudioItem : MediaItem {
     }
 
     internal override void apply_didl_lite (DIDLLiteObject didl_object) {
+        base.apply_didl_lite (didl_object);
+
         this.album = didl_object.album;
     }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]