Fix vacuum not running on FTS db

This commit is contained in:
Kovid Goyal 2022-07-29 17:28:16 +05:30
parent c628c38cc4
commit 7938c4667f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -79,7 +79,7 @@ class FTS:
def vacuum(self):
conn = self.get_connection()
conn.execute('VACUUM')
conn.execute('VACUUM fts_db')
def remove_dirty(self, book_id, fmt):
conn = self.get_connection()