diff options
author | cos <cos> | 2015-02-13 10:28:57 +0100 |
---|---|---|
committer | cos <cos> | 2015-02-13 10:28:57 +0100 |
commit | 2f7d3c19e43fcfd4722abfe0fb532c0d80935869 (patch) | |
tree | 64bf930f5fedfbc71b8439f16b5f09540f5cd39d | |
parent | 1d8c4dea30f61dfaca9cb92cf954c11dd9310cc3 (diff) | |
download | mutt-filters-show_comment.zip |
Display vcalendar comment field.show_comment
-rwxr-xr-x | vcalendar-filter | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcalendar-filter b/vcalendar-filter index e065b0d..e551b9c 100755 --- a/vcalendar-filter +++ b/vcalendar-filter @@ -71,7 +71,7 @@ foreach my $entry ( @{$calendar->{entries}} ) { } elsif ( $entry->ical_entry_type eq 'VEVENT' ) { print '-' x 72, "\n"; - foreach my $key ( qw(summary BR description BR location organizer dtstart dtend) ) { + foreach my $key ( qw(summary BR description BR location organizer dtstart dtend comment) ) { if ( $key eq 'BR' ) { print "\n"; next; |