We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b770a24 commit cddfa48Copy full SHA for cddfa48
cw_monero/lib/api/wallet.dart
@@ -11,6 +11,7 @@ import 'package:cw_monero/api/types.dart';
11
import 'package:ffi/ffi.dart';
12
import 'package:ffi/ffi.dart' as pkgffi;
13
import 'package:flutter/foundation.dart';
14
+import 'package:stackwallet/utilities/util.dart';
15
16
int _boolToInt(bool value) => value ? 1 : 0;
17
@@ -368,7 +369,7 @@ bool priorityInQueue = false;
368
369
370
Future<bool> store({bool prioritySave = false}) async {
371
// Delay saves
- if (Platform.isAndroid) {
372
+ if (Platform.isAndroid || Util.isDesktop) {
373
if (priorityInQueue) {
374
return false;
375
}
0 commit comments