diff options
author | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2024-04-22 18:07:32 -0300 |
---|---|---|
committer | Lucas de Castro Borges <lucas@gnuabordo.com.br> | 2024-04-22 18:07:32 -0300 |
commit | 5bba5c481d7273b475a39eb61e5eacec65d3c8e5 (patch) | |
tree | 514a1919f16464138651f925bb64eac3aa5cd7f9 /shell | |
parent | 5f01c706267c595de92406a32e7f31ef5056c2d0 (diff) |
New upstream version 2.0.5preupstream/2.0.5pre
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; } |