save links to the external attachments we don't want to save

master
Ted Unangst 5 years ago
parent ab8d03ffef
commit cd7626a515

@ -22,6 +22,7 @@ import (
"database/sql"
"encoding/json"
"fmt"
"html"
"image"
"io"
"log"
@ -538,7 +539,13 @@ func xonkxonk(user *WhatAbout, item interface{}) *Honk {
if donk != nil {
xonk.Donks = append(xonk.Donks, donk)
}
} else {
u = html.EscapeString(u)
content += fmt.Sprintf(
`<p>External attachment: <a href="%s" rel=noreferrer>%s</a>`, u, u)
}
} else {
log.Printf("unknown attachment: %s", at)
}
}
tags, _ := jsongetarray(obj, "tag")

Loading…
Cancel
Save