diff options
author | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2024-04-22 18:07:37 -0300 |
---|---|---|
committer | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2024-04-22 18:07:37 -0300 |
commit | 41b6cd0cf9e885faf45f0d0a4fa35055495279d7 (patch) | |
tree | 09dd3d3e220b058a9aa6762dfc60411be2ac2046 /shell | |
parent | 61a81feb3a316ea18b37ba0142fe895e714d10e5 (diff) | |
parent | 5bba5c481d7273b475a39eb61e5eacec65d3c8e5 (diff) |
Update upstream source from tag 'upstream/2.0.5pre'
Update to upstream version '2.0.5pre'
with Debian dir 9973fc57c4c67d50c40723e3e88c9b1c8e78f684
Diffstat (limited to 'shell')
-rw-r--r-- | shell/syncmanager.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/syncmanager.c b/shell/syncmanager.c index 0f08cf87..9f135ab3 100644 --- a/shell/syncmanager.c +++ b/shell/syncmanager.c @@ -64,7 +64,7 @@ static SoupSession *session = NULL; static GMainLoop *loop; static GQuark err_quark; -//Note there are personal information involved and very old +//Note there are no personal information involved and very old //linux systems does not work with HTTPS so use HTTP for now #define API_SERVER_URI "http://api.hardinfo2.org" @@ -419,24 +419,24 @@ sync_dialog_netarea_start_actions(SyncDialog *sd, SyncNetAction sna[], gint n) gtk_label_set_markup(GTK_LABEL(status_labels[i]), error_str); if (sna[i].error) { - if (sna[i].error->code != 1) { - /* the user has not cancelled something... */ + /* if (sna[i].error->code != 1) { + // the user has not cancelled something... g_warning(_("Failed while performing \"%s\". Please file a " "bug report " "if this problem persists. (Use the " "Help\342\206\222Report" " bug option.)\n\nDetails: %s"), _(sna[i].entry->name), sna[i].error->message); - } + }*/ g_error_free(sna[i].error); } else { - g_warning(_("Failed while performing \"%s\". Please file a bug " + /* g_warning(_("Failed while performing \"%s\". Please file a bug " "report " "if this problem persists. (Use the " "Help\342\206\222Report" " bug option.)"), - _(sna[i].entry->name)); + _(sna[i].entry->name));*/ } break; } |