diff --git a/common/flatpak-oci-registry.c b/common/flatpak-oci-registry.c index cf501a5e..0f747112 100644 --- a/common/flatpak-oci-registry.c +++ b/common/flatpak-oci-registry.c @@ -3120,7 +3120,8 @@ add_image_to_appstream (SoupSession *soup_session, return; ref_parts = g_strsplit (ref, "/", -1); - if (g_strv_length (ref_parts) != 4 || strcmp (ref_parts[0], "app") != 0) + if (g_strv_length (ref_parts) != 4 || + (strcmp (ref_parts[0], "app") != 0 && strcmp (ref_parts[0], "runtime") != 0)) return; id = ref_parts[1];