Skip to content

Commit

Permalink
Merge pull request #23 from gasull/master
Browse files Browse the repository at this point in the history
Check if DTSTART is null/invalid
  • Loading branch information
dmedvinsky committed Nov 22, 2019
2 parents 200ff6f + 3f65164 commit ac54116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mutt_ics/mutt_ics.py 100755 → 100644
Expand Up @@ -95,7 +95,7 @@ def get_header(e):
res = []

def get_val(name, f):
if name in e:
if name in e and e[name] is not None:
vals.append((name_map[name], f(e[name])))

get_val('SUMMARY', identity)
Expand Down

0 comments on commit ac54116

Please sign in to comment.