From 6c2fd83813e70a19c32a7c453b32a2cab76597a3 Mon Sep 17 00:00:00 2001 From: Jens Georg Date: Mon, 8 Feb 2010 16:43:47 +0100 Subject: [PATCH] media-export: Fix saving id filtering on startup --- src/plugins/media-export/rygel-media-export-root-container.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/media-export/rygel-media-export-root-container.vala b/src/plugins/media-export/rygel-media-export-root-container.vala index 3d7ef9b..19719fd 100644 --- a/src/plugins/media-export/rygel-media-export-root-container.vala +++ b/src/plugins/media-export/rygel-media-export-root-container.vala @@ -296,10 +296,10 @@ public class Rygel.MediaExportRootContainer : Rygel.MediaDBContainer { virtual_container.parent = this; try { this.media_db.save_container (virtual_container); - ids.remove (id); } catch (Error db_err) { // do nothing } + ids.remove (id); } } catch (Error error) { warning ("Got error while trying to find virtual folders: %s", -- 2.7.4