From f942b2a7ee87ecdec93cfdc1c9fc4e92428dfc16 Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Sun, 24 Aug 2025 13:30:38 +0800 Subject: [PATCH] fix #1108 Signed-off-by: bggRGjQaUbCoE --- lib/pages/video/reply/widgets/reply_item_grpc.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pages/video/reply/widgets/reply_item_grpc.dart b/lib/pages/video/reply/widgets/reply_item_grpc.dart index 4d29b7cd..8200917e 100644 --- a/lib/pages/video/reply/widgets/reply_item_grpc.dart +++ b/lib/pages/video/reply/widgets/reply_item_grpc.dart @@ -731,8 +731,8 @@ class ReplyItemGrpc extends StatelessWidget { tag: getTag?.call() ?? Get.arguments['heroTag'], ); isValid = - ctr.data.timeLength! * 1000 <= - DurationUtil.parseDuration(matchStr); + DurationUtil.parseDuration(matchStr) * 1000 <= + ctr.data.timeLength!; } catch (e) { if (kDebugMode) debugPrint('failed to validate: $e'); }