remove the max 10 events limit

This commit is contained in:
tibbi 2017-01-30 21:27:19 +01:00
parent eba27b2541
commit 2ab9ad73bd
1 changed files with 0 additions and 1 deletions

View File

@ -37,7 +37,6 @@ class FetchGoogleEventsTask(val activity: Activity, credential: GoogleAccountCre
private fun getDataFromApi(): List<Event> {
val now = DateTime(System.currentTimeMillis() - getMonthMillis())
val events = service.events().list("primary")
.setMaxResults(10)
.setTimeMin(now)
.setOrderBy("startTime")
.setSingleEvents(true)