From a217741f2412036b8381973932201ad7fe06df5c Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Sat, 26 Jun 2021 20:38:33 +0200 Subject: [PATCH] fix bitchute being scanned as peertube instances --- ripper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ripper b/ripper index dfd68f8..f77849b 100755 --- a/ripper +++ b/ripper @@ -107,7 +107,7 @@ grep 'bitchute' "$DLARCHIVE" | sed 's/bitchute /https:\/\/www\.bitchute\.com\/vi ##PEERTUBE echo "Scanning Peertube instances..." -PT_CHANNELS="$(grep -Ev '(bichute|youtube)' $CHANNELSFILE | grep -v '^#')" +PT_CHANNELS="$(grep -Ev '(bitchute|youtube)' $CHANNELSFILE | grep -v '^#')" for channel in $PT_CHANNELS; do printf 'PT channel: %s\n' "$channel" channelxml="$(curl -s "$channel")"