Skip to content

Commit

Permalink
Revert "Merge pull request guozhigq#536 from KoolShow/fix_seekto_regexp"
Browse files Browse the repository at this point in the history
This reverts commit 5692775, reversing
changes made to 0812b83.
  • Loading branch information
VillagerTom committed Feb 24, 2024
1 parent bcf71e5 commit 2ecd716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pages/video/detail/reply/widgets/reply_item.dart
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ InlineSpan buildContent(
if (patternStr.isNotEmpty) {
patternStr += "|";
}
patternStr += r'(\b(?:\d+[::])?[0-5]?[0-9][::][0-5]?[0-9]\b)';
patternStr += r'(\b\d{1,2}[::]\d{2}(?:[::]\d{2})?\b)';
final RegExp pattern = RegExp(patternStr);
List<String> matchedStrs = [];
void addPlainTextSpan(str) {
Expand Down

0 comments on commit 2ecd716

Please sign in to comment.