* mu-store-write: use 'Xapian:WritableDatabase::commit' rather than '...flush'

This commit is contained in:
djcb
2012-08-19 09:56:38 +03:00
parent 19c6858b3f
commit 90674172b9

View File

@ -194,7 +194,7 @@ mu_store_flush (MuStore *store)
try {
if (store->in_transaction())
store->commit_transaction ();
store->db_writable()->flush (); /* => commit, post X 1.1.x */
store->db_writable()->commit ();
} MU_XAPIAN_CATCH_BLOCK;
}