fix: correct variable usage to read file data in createSoundFile function
This commit is contained in:
@@ -50,7 +50,7 @@ local function createSoundFile(fileName)
|
|||||||
until url == fullPath
|
until url == fullPath
|
||||||
|
|
||||||
print(handle.readAll())
|
print(handle.readAll())
|
||||||
local fileData = response.readAll()
|
local fileData = handle.readAll()
|
||||||
|
|
||||||
local file = fs.open(name,"w")
|
local file = fs.open(name,"w")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user