commit e72b13661b058248fc615c56b03f4a9842f801e3
parent d89d948c77f55ccfa56cbfe595e6474f070d0b2d
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Fri, 1 Mar 2019 11:41:20 +0100
sfeed_update: remove wrong/incomplete comment
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/sfeed_update b/sfeed_update
@@ -34,7 +34,6 @@ loadconfig() {
# convert encoding from one encoding to another.
# convertencoding(from, to)
convertencoding() {
- # if from != to
if [ "$1" != "" ] && [ "$2" != "" ] && [ "$1" != "$2" ]; then
iconv -cs -f "$1" -t "$2" 2> /dev/null
else