Commit 057ffb71 authored by Cody Zacharias's avatar Cody Zacharias Committed by GitHub

Fix limit

parent bc2140a0
......@@ -27,9 +27,10 @@ class Favorites:
if len(self.feed) > 0:
await self.Feed()
self.count += await get.Multi(self.feed, self.config, self.conn)
elif get.Limit(self.config.Limit, self.count):
break
else:
break
if get.Limit(self.config.Limit, self.count):
break
verbose.Count(self.config, self.count)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment