m-standard-event-source: add SiLink to the object type & priority list

Just to avoid warnings for now
This commit is contained in:
George Kiagiadakis 2022-11-03 17:24:02 +02:00 committed by Julian Bouzas
parent 48635cb780
commit b2f2e3f745

View file

@ -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;
}