diff options
author | Reto Brunner <reto@labrat.space> | 2019-12-22 13:08:23 +0100 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-12-22 16:21:39 -0500 |
commit | 2708628857def56bb7a6a62480c33a2733a506e7 (patch) | |
tree | 17ced56ba9b2e54e12edce35e2ddf5a628f780eb | |
parent | ce42429cbf2e2565e019f5e2cc0c538534b78196 (diff) | |
download | aerc-2708628857def56bb7a6a62480c33a2733a506e7.tar.gz |
fix invalid format string
-rw-r--r-- | lib/format/format.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/format/format.go b/lib/format/format.go index 6d638c6..0cb9693 100644 --- a/lib/format/format.go +++ b/lib/format/format.go @@ -238,7 +238,7 @@ func ParseMessageFormat( if marked { markedFlag = "*" } - retval = append(retval, '3', 's') + retval = append(retval, '4', 's') args = append(args, readReplyFlag+delFlag+flaggedFlag+markedFlag) // Move the below cases to proper alphabetical positions once |