sfeed

Simple RSS and Atom feed parser
git clone https://git.sinitax.com/codemadness/sfeed
Log | Files | Refs | README | LICENSE | Upstream | sfeed.txt

commit f1883579dfcb256b514defcece7bf88fe65ee659
parent 1a17ad48876172fadb6782f1edee2058819770dc
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Mon, 25 Jan 2021 19:29:03 +0100

sfeed_update: change parse failure error message

"(FAIL CONVERT)" -> "(FAIL PARSE)". Convert may be too similar to text encoding
conversion.

Diffstat:
Msfeed_update | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sfeed_update b/sfeed_update @@ -122,7 +122,7 @@ feed() { rm -f "${tmpfeedfile}.fetch" if ! parse "${name}" "${feedurl}" "${basesiteurl}" < "${tmpfeedfile}.utf8" > "${tmpfeedfile}.tsv"; then - log "${name}" "FAIL (CONVERT)" + log "${name}" "FAIL (PARSE)" return fi rm -f "${tmpfeedfile}.utf8"