add an intake length limit
This commit is contained in:
parent
4fdc81cbed
commit
e98366ccb7
|
@ -769,6 +769,11 @@ func xonksaver(user *WhatAbout, item junk.Junk, origin string) *Honk {
|
||||||
currenttid = convoy
|
currenttid = convoy
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(content) > 90001 {
|
||||||
|
log.Printf("content too long. truncating")
|
||||||
|
content = content[:90001]
|
||||||
|
}
|
||||||
|
|
||||||
// grab any inline imgs
|
// grab any inline imgs
|
||||||
imgfilt := htfilter.New()
|
imgfilt := htfilter.New()
|
||||||
imgfilt.Imager = inlineimgs
|
imgfilt.Imager = inlineimgs
|
||||||
|
|
Loading…
Reference in New Issue