From 7379c3a6e5a5415704f19eaa6afa3fcee7db02b3 Mon Sep 17 00:00:00 2001 From: Michael Hall Date: Tue, 26 Aug 2014 21:18:00 +0100 Subject: [PATCH] Display error message upon failed OTA Update. --- frontend/ui/otamanager.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frontend/ui/otamanager.lua b/frontend/ui/otamanager.lua index 9acb47a32..fac45b708 100644 --- a/frontend/ui/otamanager.lua +++ b/frontend/ui/otamanager.lua @@ -113,6 +113,10 @@ function OTAManager:fetchAndProcessUpdate() UIManager:show(InfoMessage:new{ text = _("Koreader will be updated on next restart."), }) + else + UIManager:show(InfoMessage:new{ + text = _("Error updating Koreader."), + }) end end) end