core: Fix a typo.
authorJames Henstridge <james@jamesh.id.au>
Tue, 28 Jul 2009 04:44:34 +0000 (12:44 +0800)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Tue, 28 Jul 2009 12:03:48 +0000 (15:03 +0300)
Fix a typo that prevented dc:creator from being included in DIDL output.

src/rygel/rygel-didl-lite-writer.vala

index 02300ad..138cef0 100644 (file)
@@ -72,7 +72,7 @@ internal class Rygel.DIDLLiteWriter : GUPnP.DIDLLiteWriter {
         this.add_string ("class", NAMESPACE_UPNP, null, item.upnp_class);
 
         if (item.author != null && item.author != "") {
-            if (filter.have ("creator", NAMESPACE_UPNP)) {
+            if (filter.have ("creator", NAMESPACE_DC)) {
                 this.add_string ("creator", NAMESPACE_DC, null, item.author);
             }