From 7e0bb7075e03585cd47f5c41820517d8c263cd7a Mon Sep 17 00:00:00 2001 From: Santosh Bhandari Date: Mon, 18 May 2026 15:28:03 +0545 Subject: [PATCH] fix: clarify TikTok pending-share error mentions 24-hour window TikTok's spam_risk_too_many_pending_share limit applies per 24-hour period; the previous message did not state the window. --- .../nestjs-libraries/src/integrations/social/tiktok.provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/nestjs-libraries/src/integrations/social/tiktok.provider.ts b/libraries/nestjs-libraries/src/integrations/social/tiktok.provider.ts index a714add0..7cc068bc 100644 --- a/libraries/nestjs-libraries/src/integrations/social/tiktok.provider.ts +++ b/libraries/nestjs-libraries/src/integrations/social/tiktok.provider.ts @@ -147,7 +147,7 @@ export class TiktokProvider extends SocialAbstract implements SocialProvider { return { type: 'bad-body' as const, value: - 'TikTok limit the maximum of pending posts to 5, TikTok limits you for now, please check your TikTok inbox at your TikTok mobile app and try again later', + 'TikTok limits pending posts to 5 within any 24-hour period. Please check your TikTok inbox in the TikTok mobile app and try again after 24 hours.', }; }