Skip to content

Commit

Permalink
Use shell.resolve in speaker.lua
Browse files Browse the repository at this point in the history
Fixes #1753
  • Loading branch information
SquidDev committed Mar 20, 2024
1 parent ad97b29 commit 9eead7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ elseif cmd == "play" then
print("Downloading...")
handle, err = http.get(file)
else
handle, err = fs.open(file, "r")
handle, err = fs.open(shell.resolve(file), "r")
end

if not handle then
Expand Down

0 comments on commit 9eead7a

Please sign in to comment.