Fix the Todos filter

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2016-12-12 15:26:28 +01:00
parent 7a52f1dd3f
commit a1210fe5b0
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
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);
}
/**