diff options
| author | default <nobody@localhost> | 2025-04-13 09:33:17 +0200 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-04-13 09:33:17 +0200 |
| commit | f1f288699805b13bcd8f296667923ae5d2ae45ed (patch) | |
| tree | 73c5849b1eed00d33841452f8beaf5541e90c8fe | |
| parent | 9a238a937e31b36e7ee35109c09764019ee3af1f (diff) | |
Fixed offset sign because I'm a MORON.
| -rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4367,7 +4367,7 @@ int html_post_handler(const xs_dict *req, const char *q_path, if (t != 0) { const char *tz = xs_dict_get_def(snac.config, "tz", "UTC"); - t -= xs_tz_offset(tz); + t += xs_tz_offset(tz); xs *iso_date = xs_str_iso_date(t); msg = xs_dict_set(msg, "published", iso_date); |