Make LSP ignore $/ messages

Fixes #38814

(cherry picked from commit 9c273307d8)
This commit is contained in:
Francois Belair 2020-09-14 17:49:17 -04:00 committed by Rémi Verschelde
parent 28be48fb67
commit d0eedd4c23
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -98,6 +98,10 @@ Variant JSONRPC::process_action(const Variant &p_action, bool p_process_arr_elem
if (p_action.get_type() == Variant::DICTIONARY) {
Dictionary dict = p_action;
String method = dict.get("method", "");
if (method.begins_with("$/")) {
return ret;
}
Array args;
if (dict.has("params")) {
Variant params = dict.get("params", Variant());