diff options
author | Jonas Smedegaard <dr@jones.dk> | 2021-06-29 17:45:22 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2024-03-10 07:45:11 +0100 |
commit | 3a53ba1f3ef9a60633f9863cfd27a1af20bf8c9c (patch) | |
tree | f9a154d452771af4701d78899100ccbc85e42954 /bin | |
parent | b4590744838794cfe6b5c22ad77cc51331d8338b (diff) |
skip events without subject
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/events2md.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/events2md.pl b/bin/events2md.pl index d7a4eb4..7cb41f0 100755 --- a/bin/events2md.pl +++ b/bin/events2md.pl @@ -141,6 +141,7 @@ if ($OUTPUT_FILE) { } for (@events) { + next unless $_->summary; print_event( $_, $_->start, $_->end, $output_path, ); } |