mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-25 00:50:31 +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 {
|
} finally {
|
||||||
shellValidationContext.close();
|
if (shellValidationContext != null) {
|
||||||
shellValidationContext = null;
|
shellValidationContext.close();
|
||||||
|
shellValidationContext = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue