Added error handling in the case of a corrupt replay

pull/75/head
Ishaan Bhardwaj 2023-07-16 00:46:45 -04:00
parent 7199aa7ef6
commit c693871621
1 changed files with 6 additions and 2 deletions

View File

@ -14,8 +14,12 @@ function ReplaySelectScene:new()
replay_file_list = love.filesystem.getDirectoryItems("replays")
for i=1,#replay_file_list do
local data = love.filesystem.read("replays/"..replay_file_list[i])
local new_replay = binser.deserialize(data)[1]
replays[#replays + 1] = new_replay
local success, new_replay = pcall(
function() return binser.deserialize(data)[1] end
)
if success then
replays[#replays + 1] = new_replay
end
end
table.sort(replays, function(a, b)
return a["timestamp"] > b["timestamp"]