Fix follow error

This commit is contained in:
Zeva Rose 2022-04-20 01:26:19 -06:00
parent a79d7e1bf4
commit cac3695351

View file

@ -77,7 +77,7 @@ class RedditCog(Scale):
return
count = len([i async for i in SubredditFollow.find(q(guild=ctx.guild.id))])
if len(count) >= 12:
if count >= 12:
await ctx.send("Cannot follow more than 12 Subreddits", ephemeral=True)
return