Skip to content

Commit

Permalink
fix(Status): convert iso timestamp to local (#1275)
Browse files Browse the repository at this point in the history
  • Loading branch information
GeopJr authored Dec 15, 2024
1 parent 19d7f86 commit 2cf496d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Widgets/Status.vala
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,8 @@
}

private string formatted_full_date () {
return new GLib.DateTime.from_iso8601 (this.full_date, null)
return (new GLib.DateTime.from_iso8601 (this.full_date, null))
.to_timezone (new TimeZone.local ())
.format ("%F %T");
}

Expand Down

0 comments on commit 2cf496d

Please sign in to comment.