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