We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc57390 commit b53c18fCopy full SHA for b53c18f
changelog.md
@@ -7,9 +7,11 @@
7
* `FIX` wrong hover and signature for method with varargs and overloads
8
* `FIX` [#2155]
9
* `FIX` [#2224]
10
+* `FIX` [#2267]
11
12
[#2155]: https://github.com/LuaLS/lua-language-server/issues/2155
13
[#2224]: https://github.com/LuaLS/lua-language-server/issues/2224
14
+[#2267]: https://github.com/LuaLS/lua-language-server/issues/2267
15
16
## 3.6.25
17
`2023-7-26`
script/file-uri.lua
@@ -102,6 +102,9 @@ function m.isValid(uri)
102
if path == '' then
103
return false
104
end
105
+ if scheme ~= 'file' then
106
+ return false
107
+ end
108
return true
109
110
0 commit comments