From 94c0e01b7f9916978962571c4f8dc359d9917048 Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Wed, 27 Sep 2017 21:45:07 +0200 Subject: [PATCH] [fix, Android] restore patch.lua and fix odd anonymous function issue See https://github.com/koreader/koreader/issues/3214#issuecomment-332218408 and https://github.com/koreader/koreader/issues/3118#issuecomment-332633481 --- platform/android/llapp_main.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/android/llapp_main.lua b/platform/android/llapp_main.lua index a84ec80c5..57730f12b 100644 --- a/platform/android/llapp_main.lua +++ b/platform/android/llapp_main.lua @@ -48,7 +48,7 @@ end -- (Disabled, since we hide navbar on start now no need for this hack) -- run koreader patch before koreader startup --- pcall(function() dofile("/sdcard/koreader/patch.lua") end) +pcall(dofile, "/sdcard/koreader/patch.lua") -- set proper permission for sdcv A.execute("chmod", "755", "./sdcv")