all repos — honk @ 683d6da2fd61c7acecbf040421275464c1fc7858

my fork of honk

don't save large attachments that sneak in
Ted Unangst tedu@tedunangst.com
Thu, 04 Jul 2019 18:47:45 -0400
commit

683d6da2fd61c7acecbf040421275464c1fc7858

parent

ef338d73e2266849afc566b398a892e1c4a3f980

1 files changed, 4 insertions(+), 0 deletions(-)

jump to
M activity.goactivity.go

@@ -180,6 +180,10 @@ goto saveit

} data = img.Data media = "image/" + img.Format + } else if len(data) > 100000 { + log.Printf("not saving large attachment") + localize = false + data = []byte{} } } saveit: