From b90935a7c356232c0f6d6aa45b4cbbbf209dade6 Mon Sep 17 00:00:00 2001 From: liangzai <2440983361@qq.com> Date: Sat, 29 Nov 2025 14:28:16 +0800 Subject: [PATCH] fix --- internal/infrastructure/http/handlers/product_handler.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/infrastructure/http/handlers/product_handler.go b/internal/infrastructure/http/handlers/product_handler.go index 690ebba..69cb7b2 100644 --- a/internal/infrastructure/http/handlers/product_handler.go +++ b/internal/infrastructure/http/handlers/product_handler.go @@ -447,8 +447,8 @@ func (h *ProductHandler) ListMySubscriptions(c *gin.Context) { if query.PageSize <= 0 { query.PageSize = 10 } - if query.PageSize > 100 { - query.PageSize = 100 + if query.PageSize > 1000 { + query.PageSize = 1000 } // 设置默认排序