diff options
author | Francois Belair <razoric480@gmail.com> | 2020-09-14 17:49:17 -0400 |
---|---|---|
committer | Francois Belair <razoric480@gmail.com> | 2020-09-15 09:49:26 -0400 |
commit | 9c273307d8ba93da561faf3f9be71d0e0f291825 (patch) | |
tree | 231e5d4f93ebc7f8f0ed622e8a0a71bbc2a3c929 /modules/jsonrpc | |
parent | 4566db2a16e207192e3e7ce4ca30bf7ca8820a7b (diff) |
Make LSP ignore $/ messages
Fixes #38814
Diffstat (limited to 'modules/jsonrpc')
-rw-r--r-- | modules/jsonrpc/jsonrpc.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/jsonrpc/jsonrpc.cpp b/modules/jsonrpc/jsonrpc.cpp index 7bb70b098f..320da182f8 100644 --- a/modules/jsonrpc/jsonrpc.cpp +++ b/modules/jsonrpc/jsonrpc.cpp @@ -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()); |