fix avatar path for subdirectory installations (#1201)

This commit is contained in:
Kevin Papst
2019-10-30 14:00:48 +01:00
committed by GitHub
parent bda9584346
commit 48aefb1862
4 changed files with 7 additions and 7 deletions

View File

@@ -54,6 +54,6 @@ class AvatarExtension extends AbstractExtension
return $this->packages->getUrl($default);
}
return $this->packages->getUrl($url);
return $this->packages->getUrl($url, 'avatars');
}
}