Skip to content

Commit 3472959

Browse files
committed
add isDesktop check to store() delay logic
1 parent b770a24 commit 3472959

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cw_monero/lib/api/wallet.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ bool priorityInQueue = false;
368368

369369
Future<bool> store({bool prioritySave = false}) async {
370370
// Delay saves
371-
if (Platform.isAndroid) {
371+
if (Platform.isAndroid || Util.isDesktop) {
372372
if (priorityInQueue) {
373373
return false;
374374
}

0 commit comments

Comments
 (0)