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 03a5d0e commit 7a3c04cCopy full SHA for 7a3c04c
script/files.lua
@@ -920,9 +920,9 @@ function m.resolvePathPlaceholders(path)
920
return addonsPath
921
end
922
local client = require("client")
923
- local storagePath = fs.path(client.getOption("storagePath"))
+ local storagePath = client.getOption("storagePath")
924
if storagePath then
925
- addonsPath = (storagePath / "addonManager/addons"):string()
+ addonsPath = (fs.path(storagePath) / "addonManager" / "addons"):string()
926
else
927
-- Common path across OSes
928
local dataPath = "User/globalStorage/sumneko.lua/addonManager/addons"
0 commit comments