From b08a71775589fbce259f755d266f71b7d9bff5c4 Mon Sep 17 00:00:00 2001 From: "Zeeshan Ali (Khattak)" Date: Mon, 16 Feb 2009 17:32:59 +0000 Subject: [PATCH] All containers gets an update_id of 0 at creation. svn path=/trunk/; revision=606 --- src/rygel/rygel-media-container.vala | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/rygel/rygel-media-container.vala b/src/rygel/rygel-media-container.vala index a44182c..22da4f0 100644 --- a/src/rygel/rygel-media-container.vala +++ b/src/rygel/rygel-media-container.vala @@ -40,13 +40,12 @@ public abstract class Rygel.MediaContainer : MediaObject { this.parent = parent; this.title = title; this.child_count = child_count; - this.update_id = uint32.MAX; // undefined for non-root containers + this.update_id = 0; } public MediaContainer.root (string title, uint child_count) { this ("0", null, title, child_count); - this.update_id = 0; } /** -- 2.7.4