ensure skipping tx if it is a jmint

This commit is contained in:
julian 2023-05-23 10:11:44 -06:00
parent 73d877654b
commit a77c8c02fd

View file

@ -405,7 +405,7 @@ Future<Map<dynamic, dynamic>> staticProcessRestore(
tx = null;
}
if (tx == null) {
if (tx == null || tx.subType == isar_models.TransactionSubType.join) {
// This is a jmint.
return;
}