diff --git a/ircbot/commands_impl.go b/ircbot/commands_impl.go index 22eb1df6..d6fac824 100644 --- a/ircbot/commands_impl.go +++ b/ircbot/commands_impl.go @@ -455,8 +455,7 @@ func RandomTrackRequest(e Event) error { nickname = nick } - // TODO(wessie): this limit is artificial, but no one should hit 100k faves - songs, _, err = e.Storage.Song(e.Ctx).FavoritesOf(nickname, 100000, 0) + songs, err = e.Storage.Song(e.Ctx).FavoritesOfDatabase(nickname) if err != nil { return errors.E(op, err) }