From d9d6966589ecc3649793da92d81e87ce995b4b16 Mon Sep 17 00:00:00 2001 From: Raymond Jacobson Date: Thu, 28 Aug 2025 16:35:47 -0700 Subject: [PATCH] Update query for best selling --- api/v1_explore_best_selling.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/v1_explore_best_selling.go b/api/v1_explore_best_selling.go index 6ff94096..045bdfa8 100644 --- a/api/v1_explore_best_selling.go +++ b/api/v1_explore_best_selling.go @@ -28,7 +28,10 @@ func (app *ApiServer) v1ExploreBestSelling(c *fiber.Ctx) error { return err } - filters := []string{"created_at > NOW() - INTERVAL '6 months'"} + filters := []string{ + "created_at > NOW() - INTERVAL '6 months'", + "seller_user_id not in (878588928, 90455359, 612014)", + } switch params.Type { case "track": filters = append(filters, "content_type = 'track'")