gnucash maint: Bug 797896 - [HBCI] crash when downloading transactions

John Ralls jralls at code.gnucash.org
Sun Sep 13 18:42:36 EDT 2020


Updated	 via  https://github.com/Gnucash/gnucash/commit/d4fe5841 (commit)
	from  https://github.com/Gnucash/gnucash/commit/d2af5d70 (commit)



commit d4fe5841203e6ebdeb1162b76c91026df1d3e034
Author: John Ralls <jralls at ceridwen.us>
Date:   Sun Sep 13 15:41:48 2020 -0700

    Bug 797896 - [HBCI] crash when downloading transactions
    
    Initialize the match list like OFX importer.

diff --git a/gnucash/import-export/aqb/gnc-ab-utils.c b/gnucash/import-export/aqb/gnc-ab-utils.c
index 2a15cee40..8a10a78eb 100644
--- a/gnucash/import-export/aqb/gnc-ab-utils.c
+++ b/gnucash/import-export/aqb/gnc-ab-utils.c
@@ -1244,6 +1244,9 @@ gnc_ab_import_context(AB_IMEXPORTER_CONTEXT *context,
             AB_ImExporterAccountInfo_List_ForEach(ab_ail, txn_accountinfo_cb,
                                                   data);
 
+        /* populate and display the matching window */
+        gnc_gen_trans_list_show_all(data->generic_importer);
+
         /* Check balances */
         if (!(awaiting & IGNORE_BALANCES))
             AB_ImExporterAccountInfo_List_ForEach(ab_ail, bal_accountinfo_cb,
@@ -1254,6 +1257,9 @@ gnc_ab_import_context(AB_IMEXPORTER_CONTEXT *context,
         AB_ImExporterContext_AccountInfoForEach(context, txn_accountinfo_cb,
                                                 data);
 
+        /* populate and display the matching window */
+        gnc_gen_trans_list_show_all(data->generic_importer);
+
     /* Check balances */
     if (!(awaiting & IGNORE_BALANCES))
         AB_ImExporterContext_AccountInfoForEach(context, bal_accountinfo_cb,



Summary of changes:
 gnucash/import-export/aqb/gnc-ab-utils.c | 6 ++++++
 1 file changed, 6 insertions(+)



More information about the gnucash-changes mailing list