Skip to content

Commit

Permalink
potential fix for time zone issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mootw committed Mar 23, 2024
1 parent 4b99f29 commit 27c6b72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/lib/screens/match_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ class _MatchPageState extends State<MatchPage> {
Patch.buildPath(['matches', widget.matchid, 'results']))),
Column(
children: [
const Text("Match Properties"),
Text("Properties", style: Theme.of(context).textTheme.titleMedium),
TextButton(
onPressed: () {
Navigator.push(
Expand Down
2 changes: 1 addition & 1 deletion server/bin/server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void main(List<String> args) async {
(
identity: decoded['identity'],
status: decoded['value'],
time: DateTime.now()
time: DateTime.now().toUtc()
),
);
loadedEvents[event]
Expand Down

0 comments on commit 27c6b72

Please sign in to comment.