mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
Merge pull request #248 from cake-tech/CW-fix-wakelock-bug
change type string to bool in Wakelock class
This commit is contained in:
commit
18a1f60433
1 changed files with 2 additions and 2 deletions
|
@ -5,7 +5,7 @@ class WakeLock {
|
|||
|
||||
Future<void> enableWake() async {
|
||||
try {
|
||||
await _utils.invokeMethod<String>('enableWakeScreen');
|
||||
await _utils.invokeMethod<bool>('enableWakeScreen');
|
||||
} on PlatformException catch (_) {
|
||||
print('Failed enabling screen wakelock');
|
||||
}
|
||||
|
@ -13,7 +13,7 @@ class WakeLock {
|
|||
|
||||
Future<void> disableWake() async {
|
||||
try {
|
||||
await _utils.invokeMethod<String>('disableWakeScreen');
|
||||
await _utils.invokeMethod<bool>('disableWakeScreen');
|
||||
} on PlatformException catch (_) {
|
||||
print('Failed enabling screen wakelock');
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue