fixed rsvp field
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2019-09-30 12:24:11 +02:00
parent a364823eb3
commit b8a0049f10

View File

@@ -9,7 +9,7 @@ import datetime
import math import math
import pushover import pushover
import urllib.parse import urllib.parse
from icalendar import Event, vDate, Calendar from icalendar import Event, vDate, Calendar, vCalAddress, vText, vBoolean
from email.mime.multipart import MIMEMultipart from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText from email.mime.text import MIMEText
from email.mime.base import MIMEBase from email.mime.base import MIMEBase
@@ -261,7 +261,7 @@ class Informer(object):
attendee.params['ROLE'] = vText('REQ-PARTICIPANT') attendee.params['ROLE'] = vText('REQ-PARTICIPANT')
attendee.params['CUTYPE'] = vText('REQ-INDIVIDUAL') attendee.params['CUTYPE'] = vText('REQ-INDIVIDUAL')
attendee.params['PARTSTAT'] = vText('ACCEPTED') attendee.params['PARTSTAT'] = vText('ACCEPTED')
attendee.params['RSVP'] = vText('FALSE') attendee.params['RSVP'] = vBoolean(False)
event.add('attendee', attendee, encode=0) event.add('attendee', attendee, encode=0)
event.add("organizer", 'MAILTO:infomentor@09a.de') event.add("organizer", 'MAILTO:infomentor@09a.de')