mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
Vm state fixes
This commit is contained in:
parent
3adaae8cc1
commit
e3286f89d7
1 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,8 @@ public class DataStateProviderImpl extends DataStateProvider {
|
|||
return def.get();
|
||||
}
|
||||
|
||||
var entry = DataStorage.get().getStoreEntryIfPresent(store, true);
|
||||
var entry = DataStorage.get().getStoreEntryIfPresent(store, true).or(() -> DataStorage.get()
|
||||
.getStoreEntryInProgressIfPresent(store));
|
||||
if (entry.isEmpty()) {
|
||||
return def.get();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue