mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-21 15:10:23 +00:00
Fix NPE
This commit is contained in:
parent
dbea577662
commit
671270ce40
1 changed files with 4 additions and 2 deletions
|
@ -94,8 +94,10 @@ class ScanDialog extends DialogComp {
|
|||
}
|
||||
});
|
||||
} finally {
|
||||
shellValidationContext.close();
|
||||
shellValidationContext = null;
|
||||
if (shellValidationContext != null) {
|
||||
shellValidationContext.close();
|
||||
shellValidationContext = null;
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue