mirror of https://github.com/Chocobozzz/PeerTube
Fix default avatar URL
parent
dce659fa7c
commit
62fca05de4
|
@ -20,7 +20,7 @@ export abstract class Actor implements ActorServer {
|
|||
|
||||
if (actor && actor.avatar) return absoluteAPIUrl + actor.avatar.path
|
||||
|
||||
this.GET_DEFAULT_AVATAR_URL()
|
||||
return this.GET_DEFAULT_AVATAR_URL()
|
||||
}
|
||||
|
||||
static GET_DEFAULT_AVATAR_URL () {
|
||||
|
|
|
@ -145,6 +145,7 @@
|
|||
<div class="pt-3 border-top video-info-channel d-flex">
|
||||
<div class="video-info-channel-left d-flex">
|
||||
<avatar-channel [video]="video"></avatar-channel>
|
||||
|
||||
<div class="video-info-channel-left-links ml-1">
|
||||
<a [routerLink]="[ '/video-channels', video.byVideoChannel ]" i18n-title title="Go the channel page">
|
||||
{{ video.channel.displayName }}
|
||||
|
@ -230,7 +231,7 @@
|
|||
<div class="video-attribute">
|
||||
<span i18n class="video-attribute-label">Duration</span>
|
||||
<span class="video-attribute-value">{{ video.duration | myVideoDurationFormatter }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<my-video-comments
|
||||
|
|
|
@ -6,7 +6,7 @@ function getEnvCli (server?: ServerInfo) {
|
|||
return `NODE_ENV=test NODE_APP_INSTANCE=${server.serverNumber}`
|
||||
}
|
||||
|
||||
async function execCLI (command: string,) {
|
||||
async function execCLI (command: string) {
|
||||
return new Promise<string>((res, rej) => {
|
||||
exec(command, (err, stdout, stderr) => {
|
||||
if (err) return rej(err)
|
||||
|
|
Loading…
Reference in New Issue