Merge pull request #900 from gontofe/OTAfix

Add tidy up option after failed update.
pull/902/merge
Huang Xin 10 years ago
commit b2a3f6e5ec

@ -114,8 +114,11 @@ function OTAManager:fetchAndProcessUpdate()
text = _("Koreader will be updated on next restart."),
})
else
UIManager:show(InfoMessage:new{
text = _("Error updating Koreader."),
UIManager:show(ConfirmBox:new{
text = _("Error updating Koreader. Would you like to delete temporary files?"),
ok_callback = function()
os.execute("rm ota/ko*")
end,
})
end
end)

Loading…
Cancel
Save