mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-27 03:21:32 +03:00
systemadm: format dates in local time
This commit is contained in:
parent
2e2ca209f0
commit
716f158c56
@ -406,14 +406,14 @@ public class MainWindow : Window {
|
||||
|
||||
uint64 t = unit.active_enter_timestamp;
|
||||
if (t > 0) {
|
||||
Time timestamp = Time.gm((time_t) (t / 1000000));
|
||||
Time timestamp = Time.local((time_t) (t / 1000000));
|
||||
unit_active_enter_timestamp_label.set_text_or_na(timestamp.format("%a, %d %b %Y %H:%M:%S %z"));
|
||||
} else
|
||||
unit_active_enter_timestamp_label.set_text_or_na();
|
||||
|
||||
t = unit.active_exit_timestamp;
|
||||
if (t > 0) {
|
||||
Time timestamp = Time.gm((time_t) (t / 1000000));
|
||||
Time timestamp = Time.local((time_t) (t / 1000000));
|
||||
unit_active_exit_timestamp_label.set_text_or_na(timestamp.format("%a, %d %b %Y %H:%M:%S %z"));
|
||||
} else
|
||||
unit_active_exit_timestamp_label.set_text_or_na();
|
||||
|
Loading…
Reference in New Issue
Block a user