BookStatusWidget: fix status toggle (#8329)

Fix:  #8324

cf: #7671
This commit is contained in:
yparitcher
2021-10-15 03:22:26 -04:00
committed by GitHub
parent a1e0d87c62
commit 1c2e5eee1d
2 changed files with 3 additions and 4 deletions

View File

@@ -249,9 +249,8 @@ end
-- If mark_read is true then we change status only from reading/abandoned to read (complete).
-- Otherwise we change status from reading/abandoned to read or from read to reading.
function ReaderStatus:onMarkBook(mark_read)
if self.settings.data.summary and self.settings.data.summary.status then
local current_status = self.settings.data.summary.status
if current_status == "complete" then
if self.settings.data.summary then
if self.settings.data.summary.status and self.settings.data.summary.status == "complete" then
if mark_read then
-- Keep mark as read.
self.settings.data.summary.status = "complete"