diff options
Diffstat (limited to 'module/plugins/hooks/ExtractArchive.py')
-rw-r--r-- | module/plugins/hooks/ExtractArchive.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py index a60205f20..5dc960ec8 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -62,15 +62,15 @@ class ArchiveQueue(object): def get(self): - return self.plugin.retrieve(self.storage, default=[]) + return self.plugin.db.retrieve(self.storage, default=[]) def set(self, value): - return self.plugin.store(self.storage, value) + return self.plugin.db.store(self.storage, value) def delete(self): - return self.plugin.delete(self.storage) + return self.plugin.db.delete(self.storage) def add(self, item): |