instagram: no tratar como errores si no se puede descargar un post

This commit is contained in:
Cat /dev/Nulo 2023-08-13 14:09:58 -03:00
parent 18a9c5a465
commit a3ec00fdda

View file

@ -26,6 +26,9 @@ func (r *Instagram) Respond(url *url.URL) (*common.Uploadable, common.Error) {
lookup, err := r.lookup(url.String())
if err != nil {
log.Println(err)
if strings.Index(url.Path, "/p/") != 0 {
return nil, common.NotValid
}
return nil, common.HadError
}