Merge pull request #2625 from nextcloud/fix-todo-filter

Fix the Todos filter
This commit is contained in:
Roeland Jago Douma 2016-12-16 08:20:00 +01:00 committed by GitHub
commit 4fdefef7e8
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class Todo implements IFilter {
* @since 11.0.0
*/
public function filterTypes(array $types) {
return array_intersect(['calendar_todo'], $types);
return array_intersect(['calendar_todos'], $types);
}
/**