Add missing Module\Photo route for contact avatar

This commit is contained in:
Hypolite Petovan 2021-10-03 07:48:46 -04:00
parent f426a5bd98
commit 5112dd06f2
2 changed files with 11 additions and 5 deletions

View file

@ -97,6 +97,11 @@ class Photo extends BaseModule
$uid = intval(pathinfo($parameters['uid_ext'], PATHINFO_FILENAME));
}
// Please refactor this for the love of everything that's good
if (!empty($parameters['contact_id'])) {
$uid = $parameters['contact_id'];
}
$photo = self::getAvatar($uid, $parameters['type'], $customsize ?: Proxy::PIXEL_SMALL);
} else {
$photoid = pathinfo($parameters['name'], PATHINFO_FILENAME);