diff options
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/hooks/ExtractArchive.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/module/plugins/hooks/ExtractArchive.py b/module/plugins/hooks/ExtractArchive.py index e1d6dff59..6e6a6862c 100644 --- a/module/plugins/hooks/ExtractArchive.py +++ b/module/plugins/hooks/ExtractArchive.py @@ -63,7 +63,7 @@ class ArchiveQueue(object):      def get(self): -        return self.plugin.getStorage("ExtractArchive:%s" % self.storage, "").decode('base64').split() +        return [int(pid) for pid in self.plugin.getStorage("ExtractArchive:%s" % self.storage, "").decode('base64').split()]      def set(self, value): | 
