only apply attachment limit to localized atts
This commit is contained in:
parent
3b036f4975
commit
d63e338089
|
@ -871,15 +871,17 @@ func xonksaver(user *WhatAbout, item junk.Junk, origin string) *Honk {
|
||||||
desc = name
|
desc = name
|
||||||
}
|
}
|
||||||
localize := false
|
localize := false
|
||||||
if numatts > 4 {
|
if at == "Document" || at == "Image" {
|
||||||
ilog.Printf("excessive attachment: %s", at)
|
|
||||||
} else if at == "Document" || at == "Image" || (preferorig && at == "Link") {
|
|
||||||
mt = strings.ToLower(mt)
|
mt = strings.ToLower(mt)
|
||||||
dlog.Printf("attachment: %s %s", mt, u)
|
dlog.Printf("attachment: %s %s", mt, u)
|
||||||
if mt == "text/plain" || mt == "application/pdf" ||
|
if mt == "text/plain" || mt == "application/pdf" ||
|
||||||
strings.HasPrefix(mt, "image") {
|
strings.HasPrefix(mt, "image") {
|
||||||
|
if numatts > 4 {
|
||||||
|
ilog.Printf("excessive attachment: %s", at)
|
||||||
|
} else {
|
||||||
localize = true
|
localize = true
|
||||||
}
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
ilog.Printf("unknown attachment: %s", at)
|
ilog.Printf("unknown attachment: %s", at)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue