Merge pull request #21850 from DualMatrix/error_spam
Fixed error spam when inspecting remote tree
This commit is contained in:
commit
5007b415c1
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());
|
prop.push_back(Variant());
|
||||||
} else {
|
} else {
|
||||||
prop.push_back(pi.hint);
|
prop.push_back(pi.hint);
|
||||||
if (res.is_null())
|
if (res.is_null() || res->get_path().empty())
|
||||||
prop.push_back(pi.hint_string);
|
prop.push_back(pi.hint_string);
|
||||||
else
|
else
|
||||||
prop.push_back(String("RES:") + res->get_path());
|
prop.push_back(String("RES:") + res->get_path());
|
||||||
|
|
Loading…
Reference in a new issue