Don't enable tag activities by default

This commit is contained in:
Joas Schilling 2016-02-02 16:28:37 +01:00
parent 0e95b9f2d5
commit 5a3d2ef2a1
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ class Extension implements IExtension {
* @return array|false
*/
public function getDefaultTypes($method) {
return [self::APP_NAME];
return $method === self::METHOD_STREAM ? [self::APP_NAME] : false;
}
/**