forked from platypush/platypush
Don't wrap events in a Response object twice
This commit is contained in:
parent
b8665b7fbb
commit
cfda6e019c
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ class GoogleCalendarPlugin(GooglePlugin, CalendarInterface):
|
|||
orderBy='startTime').execute()
|
||||
|
||||
events = result.get('items', [])
|
||||
return Response(output=events)
|
||||
return events
|
||||
|
||||
|
||||
def _get_service(self, scope=None):
|
||||
|
|
Loading…
Reference in a new issue