From c65e7971ecf593568bf98edbb61d64646903180c Mon Sep 17 00:00:00 2001 From: Frans de Jonge Date: Tue, 11 Feb 2025 20:59:36 +0100 Subject: [PATCH] Fix typo in PocketBook init (#13238) See https://www.mobileread.com/forums/showthread.php?p=4488302#post4488302 --- frontend/device/pocketbook/device.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/device/pocketbook/device.lua b/frontend/device/pocketbook/device.lua index 4bad0f1cb..0b8a83732 100644 --- a/frontend/device/pocketbook/device.lua +++ b/frontend/device/pocketbook/device.lua @@ -240,7 +240,7 @@ function PocketBook:init() -- Unhandled events will leave Input:waitEvent() as "GenericInput" -- NOTE: This all happens in ffi/input_pocketbook.lua - self._model_init() + self:_model_init() -- NOTE: `self.input.open` is a method, and we want it to call `self.input.input.open` -- with `self.input` as first argument, which the imp supports to get access to -- `self.input.raw_input`, hence the double `self.input` arguments.