diff --git a/onionr/storagecounter.py b/onionr/storagecounter.py index 024eb4f5..481d7821 100644 --- a/onionr/storagecounter.py +++ b/onionr/storagecounter.py @@ -27,7 +27,7 @@ class StorageCounter: def isFull(self): retData = False - if self._core.config.get('allocations.disk') >= self.getAmount(): + if self._core.config.get('allocations.disk') <= self.getAmount(): retData = True return retData