summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authordelthas <delthas@dille.cc>2022-10-17 14:17:05 +0200
committerdelthas <delthas@dille.cc>2022-10-17 14:17:05 +0200
commitec480412c4b4460625a7dc304ec0a63d0619913a (patch)
tree7e40124dff1ab555cbbb774a3f301df5fd69c96c /cmd
parentFix OSC 8 hyperlink ID format (diff)
Fix requesting CHATHISTORY TARGETS with invalid timestamps
Previously, we sent the CHATHISTORY TARGETS start time with an incorrect offset equal to the system time offset. This means that we only reopened private buffers from the last app close + N hours on a system with a N-hour time offset. This fixes the issue by saving the stamp as UTC, and also making sure to format any time offset correctly.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/senpai/main.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/cmd/senpai/main.go b/cmd/senpai/main.go
index 241c4c3..6434182 100644
--- a/cmd/senpai/main.go
+++ b/cmd/senpai/main.go
@@ -89,7 +89,7 @@ func getLastBuffer() (netID, buffer string) {
return "", ""
}
- fields := strings.SplitN(string(buf), " ", 2)
+ fields := strings.SplitN(strings.TrimSpace(string(buf)), " ", 2)
if len(fields) < 2 {
return "", ""
}
@@ -116,7 +116,8 @@ func getLastStamp() time.Time {
return time.Time{}
}
- t, err := time.Parse(time.RFC3339Nano, string(buf))
+ stamp := strings.TrimSpace(string(buf))
+ t, err := time.Parse(time.RFC3339Nano, stamp)
if err != nil {
return time.Time{}
}
@@ -129,7 +130,7 @@ func writeLastStamp(app *senpai.App) {
if last.IsZero() {
return
}
- err := os.WriteFile(lastStampPath, []byte(last.Format(time.RFC3339Nano)), 0666)
+ err := os.WriteFile(lastStampPath, []byte(last.UTC().Format(time.RFC3339Nano)), 0666)
if err != nil {
fmt.Fprintf(os.Stderr, "failed to write last stamp at %q: %s\n", lastStampPath, err)
}