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 () {
<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 }}
<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
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)