Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
21 lines
901 B
Diff
21 lines
901 B
Diff
diff --git a/src/MainWindow.vala b/src/MainWindow.vala
|
|
index 14b0701..13638a5 100644
|
|
--- a/src/MainWindow.vala
|
|
+++ b/src/MainWindow.vala
|
|
@@ -82,6 +82,7 @@ public class Feedback.MainWindow : Gtk.ApplicationWindow {
|
|
AppStream.PoolFlags.LOAD_FLATPAK |
|
|
AppStream.PoolFlags.RESOLVE_ADDONS
|
|
);
|
|
+ appstream_pool.add_extra_data_location ("/run/current-system/sw/share/metainfo/", AppStream.FormatStyle.METAINFO);
|
|
#else
|
|
appstream_pool.clear_metadata_locations ();
|
|
// flatpak's appstream files exists only inside they sandbox
|
|
@@ -89,6 +90,7 @@ public class Feedback.MainWindow : Gtk.ApplicationWindow {
|
|
foreach (var app in app_entries) {
|
|
appstream_pool.add_metadata_location (appdata_dir.printf (app));
|
|
}
|
|
+ appstream_pool.add_metadata_location ("/run/current-system/sw/share/metainfo/");
|
|
#endif
|
|
|
|
try {
|