Fixed error spam when inspecting remote tree
Fixed error spam when inspecting remote tree, fixes #20365
This commit is contained in:
parent
f1e5b7cf42
commit
35248a03be
1 changed files with 1 additions and 1 deletions
|
@ -661,7 +661,7 @@ void ScriptDebuggerRemote::_send_object_id(ObjectID p_id) {
|
|||
prop.push_back(Variant());
|
||||
} else {
|
||||
prop.push_back(pi.hint);
|
||||
if (res.is_null())
|
||||
if (res.is_null() || res->get_path().empty())
|
||||
prop.push_back(pi.hint_string);
|
||||
else
|
||||
prop.push_back(String("RES:") + res->get_path());
|
||||
|
|
Loading…
Reference in a new issue