mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-07-22 16:51:05 +10:00
wrap returns from if blocks
fixes two analyzer errors for return blocks on new lines from if blocks
This commit is contained in:
@@ -673,8 +673,9 @@ class _ChatScreenState extends State<ChatScreen> {
|
||||
String _formatRelativeTime(DateTime time) {
|
||||
final diff = DateTime.now().difference(time);
|
||||
if (diff.inSeconds < 60) return context.l10n.time_justNow;
|
||||
if (diff.inMinutes < 60)
|
||||
if (diff.inMinutes < 60) {
|
||||
return context.l10n.time_minutesAgo(diff.inMinutes);
|
||||
}
|
||||
if (diff.inHours < 24) return context.l10n.time_hoursAgo(diff.inHours);
|
||||
return context.l10n.time_daysAgo(diff.inDays);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user