[gnome-boxes] util-app: Don't throw warning when remote recommended downlods is unreachable



commit 07d548e448a478b4fda5fbf97d8f389781c89400
Author: Felipe Borges <felipeborges gnome org>
Date:   Wed Aug 10 09:56:26 2022 +0200

    util-app: Don't throw warning when remote recommended downlods is unreachable
    
    This isn't a big issue. Boxes will fallback to its cached file
    instead.

 src/util-app.vala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/util-app.vala b/src/util-app.vala
index c5f47ae2..06cc38b5 100644
--- a/src/util-app.vala
+++ b/src/util-app.vala
@@ -196,7 +196,7 @@ public async GLib.List<Osinfo.Media>? fetch_recommended_downloads_from_net () {
         try {
             yield Downloader.get_default ().download_from_http (download);
         } catch (GLib.Error error) {
-            warning ("Failed to download recommended-downloads file: %s", error.message);
+            message ("Failed to download recommended-downloads file: %s", error.message);
 
             if (!cached_file.query_exists ())
                 return null;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]