[geary] Include account id in problem report details



commit 36b8615347edbb4dfbdad6d1f5745b05db02b962
Author: Michael Gratton <mike vee net>
Date:   Sat Feb 2 16:46:19 2019 +1100

    Include account id in problem report details
    
    This lets us know what account to look for in debug output and if it
    is a GOA account.

 src/client/dialogs/dialogs-problem-details-dialog.vala | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
---
diff --git a/src/client/dialogs/dialogs-problem-details-dialog.vala 
b/src/client/dialogs/dialogs-problem-details-dialog.vala
index c6608e53..28d8e2fd 100644
--- a/src/client/dialogs/dialogs-problem-details-dialog.vala
+++ b/src/client/dialogs/dialogs-problem-details-dialog.vala
@@ -64,7 +64,11 @@ public class Dialogs.ProblemDetailsDialog : Gtk.Dialog {
         );
         if (this.account != null) {
             details.append_printf(
-                "Account type: %s\n",
+                "Account id: %s\n",
+                this.account.id
+            );
+            details.append_printf(
+                "Account provider: %s\n",
                 this.account.service_provider.to_string()
             );
         }


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