orrg

online rss & atom feed reader for gemini
git clone https://git.clttr.info/orrg.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit b125f8bff247d0ecc474d49ce06820465c63dba0
parent 241fb7cb23745e2d526b0e28d3dd432b9c34e9ac
Author: René Wagner <rwa@clttr.info>
Date:   Mon, 11 Apr 2022 19:13:42 +0200

skip request that require an input

Diffstat:
Morrg.pl | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/orrg.pl b/orrg.pl @@ -112,7 +112,7 @@ sub feed_get my $content; if ( $query =~ /^https\:\/\// ) { $content = `wget -qO - $query`; } if ( $query =~ /^gemini\:\/\// ) { - $content = `gmni -L -j once -i $query`; + $content = `gmni -L -j once -i -N $query`; $content =~ /20\W/ or return undef; $content =~ s/^[0-9]{0,2}\W.+\r\n//; }