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

Fix video title with RSS feed video import

This commit is contained in:
Chocobozzz 2025-08-25 08:48:03 +02:00
parent f383fe101a
commit cfe49b37ec
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -78,7 +78,7 @@ export class YoutubeDLInfoBuilder {
private buildVideoInfo (obj: any): YoutubeDLInfo {
return {
name: this.titleTruncation(obj.title),
name: this.titleTruncation(obj.title || obj.fulltitle),
description: this.descriptionTruncation(obj.description),
category: this.getCategory(obj.categories),
licence: this.getLicence(obj.license),