mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-10 12:44:31 +00:00
null error fix on isar exchange data cache instance
This commit is contained in:
parent
7e30eed7c0
commit
bc85b97f5f
1 changed files with 3 additions and 0 deletions
|
@ -135,6 +135,9 @@ class ExchangeDataLoadingService {
|
|||
Future<void> loadAll() async {
|
||||
if (!_locked) {
|
||||
_locked = true;
|
||||
if (_isar == null) {
|
||||
await initDB();
|
||||
}
|
||||
Logging.instance.log(
|
||||
"ExchangeDataLoadingService.loadAll starting...",
|
||||
level: LogLevel.Info,
|
||||
|
|
Loading…
Reference in a new issue