1
0
Fork 0

Merge pull request #100738 from beicause/fix-crash-one-click-deploy

Fix crash when using one-click deploy
This commit is contained in:
Thaddeus Crews 2024-12-23 11:15:11 -06:00
commit 01a7c81e02
No known key found for this signature in database
GPG Key ID: 62181B86FE9E5D84
1 changed files with 3 additions and 0 deletions

View File

@ -285,6 +285,9 @@ void EditorRun::stop() {
}
OS::ProcessID EditorRun::get_current_process() const {
if (pids.front() == nullptr) {
return 0;
}
return pids.front()->get();
}