unixporn / trup

Discord bot for the Unixporn community
Mozilla Public License 2.0
47 stars 9 forks source link

Add support for !top[item] #144

Closed Tanish2002 closed 3 years ago

Tanish2002 commented 3 years ago

I don't really know SQL so please check code before merging :smile:

mlvzk commented 3 years ago

What happens if you do !top on a field that doesn't exist? say !top Test

Tanish2002 commented 3 years ago

Argument not found

if len(topFields) == 0 {
    ctx.Reply("Arguement not found")
    return
}
mlvzk commented 3 years ago

Thanks