Skip to content

Commit

Permalink
Merge pull request #9 from Sobuno/ParseOutboundCensor
Browse files Browse the repository at this point in the history
Parse outboundCensorID as event ID as well.
  • Loading branch information
Sobuno authored May 25, 2018
2 parents 6b5b06c + b6d1479 commit cddb110
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lectocal/lectio.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _get_lectio_weekformat_with_offset(offset):


def _get_id_from_link(link):
match = re.search("(?:absid|ProeveholdId)=(\d+)", link)
match = re.search("(?:absid|ProeveholdId|outboundCensorID)=(\d+)", link)
if match is None:
raise IdNotFoundInLinkError("Couldn't find id in link: {}".format(
link))
Expand Down

0 comments on commit cddb110

Please sign in to comment.