Fix Crash Bug in Android (ShareFile and Reconnect) + Force prettyDateString to use .toLocal() time + Formatting #794

Merged
sarah merged 9 commits from post-stable-fixes into trunk 2024-01-03 22:10:09 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 44925783f5 - Show all commits

View File

@ -39,5 +39,5 @@ String prettyDateString(BuildContext context, DateTime date) {
// }
return AppLocalizations.of(context)!.now;
}
return DateFormat.yMd(Platform.localeName).add_jm().format(date);
return DateFormat.yMd(Platform.localeName).add_jm().format(date.toLocal());
}