Skip to content

Commit 80471b5

Browse files
authored
Merge pull request #6 from c0dev0id/main
2 parents c3fb31b + 26f8473 commit 80471b5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg.pl

+3-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,9 @@ sub run {
181181
while ( my $row = $ssth->fetchrow_hashref ) {
182182
print "Comment:\n$row->{COMMENT}\n\n";
183183
print "Description:\n$row->{DESCRIPTION}\n";
184-
print "Homepage:\n$row->{HOMEPAGE}\n";
184+
if($row->{HOMEPAGE}) {
185+
print "Homepage:\n$row->{HOMEPAGE}\n";
186+
}
185187
}
186188
exit();
187189
}

0 commit comments

Comments
 (0)