Skip to content

Commit

Permalink
修复
Browse files Browse the repository at this point in the history
  • Loading branch information
jhqwqmc committed Aug 25, 2024
1 parent 291b007 commit 4c52ad5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/widgets/components/app/cinematic_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ String _longestEntryName(_LongestEntryNameRef ref) {
["追踪时长"];
return names.isEmpty
? ""
: names.reduce((a, b) => (a?.length ?? 0) > (b?.length ?? 0) ? a : b);
: names.reduce((a, b) => a.length > b.length ? a : b);
}

@riverpod
Expand Down

0 comments on commit 4c52ad5

Please sign in to comment.