Sorry, messed up the subject in the last patch. Anyway this fixes a bug
in getting the right date of an entry you want to reply to.
---
ui/tuishortcuts.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/tuishortcuts.go b/ui/tuishortcuts.go
index a92c0aa..effe177 100644
--- a/ui/tuishortcuts.go+++ b/ui/tuishortcuts.go
@@ -729,7 +729,7 @@ func getSelectedEntryText() (*core.TlFeedItem, error) {
return nil, fmt.Errorf("Couldn't parse selected entry - nb of line issue.")
}
- date := strings.Split(lines[0], "-")+ date := strings.Split(lines[0], " - ") if len(date) < 2 {
return nil, fmt.Errorf("Couldn't parse selected entry - date issue.")
}
--
2.49.0