mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-06 08:16:12 +01:00
Fix regression in 0.8.36 that caused the calibredb command to not properly refresh format information in standalone calibre-server processes
This commit is contained in:
parent
8420d9967c
commit
c748024a2e
1 changed files with 1 additions and 0 deletions
|
|
@ -534,6 +534,7 @@ def refresh_format_cache(self):
|
|||
def check_if_modified(self):
|
||||
if self.last_modified() > self.last_update_check:
|
||||
self.refresh()
|
||||
self.refresh_format_cache()
|
||||
self.last_update_check = utcnow()
|
||||
|
||||
def path(self, index, index_is_id=False):
|
||||
|
|
|
|||
Loading…
Reference in a new issue