fixed null for args in process handle
This commit is contained in:
parent
e2ab296e79
commit
c0741c48aa
@ -106,7 +106,7 @@ class ProcessHandle {
|
||||
}
|
||||
|
||||
public function get_args():ReadOnlyArray<String> {
|
||||
return this.config.args;
|
||||
return this.config.args != null ? this.config.args : [];
|
||||
}
|
||||
|
||||
public function claimTurtleMutex():Bool {
|
||||
|
Loading…
Reference in New Issue
Block a user