diff --git a/orrg.pl b/orrg.pl

index 195999cd7d45aff0feedcc135c80336e65a7b4b6..88e42e7b37eb0985b70a27dd6d4dee731924485b 100755

--- a/orrg.pl

+++ b/orrg.pl

@@ -4,7 +4,6 @@ # licenced under BSD 3-Clause licence

# https://git.sr.ht/~rwa/orrg

use strict;

-no warnings 'experimental';

use URI::Escape;

use XML::FeedPP;

use HTML::Strip;

@@ -47,7 +46,8 @@ }

push @body, '# '. $feed->title;

push @body, 'fetched '. strftime('%Y-%m-%dT%H:%M:%SZ', gmtime());

- $feed->description eq '' or push @body, ('', $feed->description);

+ push @body, '';

+ $feed->description eq '' or push @body, $feed->description;

$feed->image eq '' or push @body, '=> '. $feed->image .' feed image';

$feed->link eq '' or push @body, ('=> '.$feed->link.' open website', '');