Skip to content

Commit ae58c12

Browse files
[import-main-matcher] don't quote account fullnames
1 parent 8a54bf2 commit ae58c12

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

gnucash/import-export/import-main-matcher.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1871,9 +1871,8 @@ get_peer_acct_names (Split *split)
18711871
(g_list_find (accounts_seen, account)))
18721872
continue;
18731873
gchar *name = gnc_account_get_full_name (account);
1874-
names = g_list_prepend (names, g_strdup_printf ("\"%s\"", name));
1874+
names = g_list_prepend (names, name);
18751875
accounts_seen = g_list_prepend (accounts_seen, account);
1876-
g_free (name);
18771876
}
18781877
names = g_list_sort (names, (GCompareFunc)g_utf8_collate);
18791878
auto retval = gnc_list_formatter (names);

0 commit comments

Comments
 (0)