From b2f2e3f74590e69a371f8bd2d5ab7f54a5724833 Mon Sep 17 00:00:00 2001 From: George Kiagiadakis Date: Thu, 3 Nov 2022 17:24:02 +0200 Subject: [PATCH] m-standard-event-source: add SiLink to the object type & priority list Just to avoid warnings for now --- modules/module-standard-event-source.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/module-standard-event-source.c b/modules/module-standard-event-source.c index da6c4ddc..83f6c5d8 100644 --- a/modules/module-standard-event-source.c +++ b/modules/module-standard-event-source.c @@ -78,6 +78,11 @@ get_object_type_and_priority (gpointer obj, const gchar **type, gint *priority) *type = "metadata"; *priority = 40; } + else if (WP_IS_SI_LINK (obj)) + { + *type = "SiLink"; + *priority = 30; + } return type != NULL; }