mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 09:49:20 +02:00
Fix video title with RSS feed video import
This commit is contained in:
parent
f383fe101a
commit
cfe49b37ec
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ export class YoutubeDLInfoBuilder {
|
||||||
|
|
||||||
private buildVideoInfo (obj: any): YoutubeDLInfo {
|
private buildVideoInfo (obj: any): YoutubeDLInfo {
|
||||||
return {
|
return {
|
||||||
name: this.titleTruncation(obj.title),
|
name: this.titleTruncation(obj.title || obj.fulltitle),
|
||||||
description: this.descriptionTruncation(obj.description),
|
description: this.descriptionTruncation(obj.description),
|
||||||
category: this.getCategory(obj.categories),
|
category: this.getCategory(obj.categories),
|
||||||
licence: this.getLicence(obj.license),
|
licence: this.getLicence(obj.license),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue