mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Bug 798967 - Cannot Save to Any Path After Upgrading to 5.2
Fix inverted if statement condition for save success flag
This commit is contained in:
@@ -1612,7 +1612,7 @@ gnc_book_write_to_xml_file_v2 (QofBook* book, const char* filename,
|
||||
/* Optionally wait for parallel compression threads */
|
||||
if (thread)
|
||||
{
|
||||
if (g_thread_join (thread) != nullptr)
|
||||
if (g_thread_join (thread) == nullptr)
|
||||
success = false;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user