]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/lib/actor-image.ts
External auth can update user on login
[github/Chocobozzz/PeerTube.git] / server / lib / actor-image.ts
CommitLineData
d0800f76 1import maxBy from 'lodash/maxBy'
2
3function getBiggestActorImage <T extends { width: number }> (images: T[]) {
4 const image = maxBy(images, 'width')
5
6 // If width is null, maxBy won't return a value
7 if (!image) return images[0]
8
9 return image
10}
11
12export {
13 getBiggestActorImage
14}