Fix other dumb mistake

This commit is contained in:
Kodi Craft 2025-03-25 18:44:26 +01:00
parent 610893222b
commit ac23c993d0
Signed by: kodi
GPG Key ID: 69D9EED60B242822

View File

@ -38,7 +38,7 @@ local function main()
log.info("Downloading index file")
local indexrequest = http.get(URLs.fileIndex)
local index = textutils.unserializeJson(indexrequest.readAll())
local index = textutils.unserializeJSON(indexrequest.readAll())
indexrequest.close()
if (index == nil) then