diff --git a/app/src/main/kotlin/com/simplemobiletools/calendar/asynctasks/FetchGoogleEventsTask.kt b/app/src/main/kotlin/com/simplemobiletools/calendar/asynctasks/FetchGoogleEventsTask.kt index c7a945c48..b9f25a6fd 100644 --- a/app/src/main/kotlin/com/simplemobiletools/calendar/asynctasks/FetchGoogleEventsTask.kt +++ b/app/src/main/kotlin/com/simplemobiletools/calendar/asynctasks/FetchGoogleEventsTask.kt @@ -37,7 +37,6 @@ class FetchGoogleEventsTask(val activity: Activity, credential: GoogleAccountCre private fun getDataFromApi(): List { val now = DateTime(System.currentTimeMillis() - getMonthMillis()) val events = service.events().list("primary") - .setMaxResults(10) .setTimeMin(now) .setOrderBy("startTime") .setSingleEvents(true)