mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
calibre: do not attempt to stop the socket if nil (#7067)
This commit is contained in:
parent
0685eecdad
commit
cd9b3e10fd
@ -255,10 +255,14 @@ end
|
||||
function CalibreWireless:disconnect()
|
||||
logger.info("disconnect from calibre")
|
||||
self.connect_message = false
|
||||
if self.calibre_socket then
|
||||
self.calibre_socket:stop()
|
||||
UIManager:removeZMQ(self.calibre_messagequeue)
|
||||
self.calibre_socket = nil
|
||||
end
|
||||
if self.calibre_messagequeue then
|
||||
UIManager:removeZMQ(self.calibre_messagequeue)
|
||||
self.calibre_messagequeue = nil
|
||||
end
|
||||
CalibreMetadata:clean()
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user