1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Add scores to follows and remove bad ones

This commit is contained in:
Chocobozzz 2018-01-11 09:35:50 +01:00
parent 7ae71355c4
commit 60650c77c8
No known key found for this signature in database
GPG key ID: 583A612D890159BE
21 changed files with 217 additions and 133 deletions

View file

@ -31,7 +31,7 @@ function populateAsyncUserVideoChannels (authService: AuthService, channel: any[
const videoChannels = user.videoChannels
if (Array.isArray(videoChannels) === false) return
videoChannels.forEach(c => channel.push({ id: c.id, label: c.name }))
videoChannels.forEach(c => channel.push({ id: c.id, label: c.displayName }))
return res()
}