fix: correct variable usage to read file data in createSoundFile function

This commit is contained in:
2025-06-15 20:29:19 -04:00
parent 10ffbbfb4b
commit e7e9b05a94

View File

@@ -50,7 +50,7 @@ local function createSoundFile(fileName)
until url == fullPath
print(handle.readAll())
local fileData = response.readAll()
local fileData = handle.readAll()
local file = fs.open(name,"w")