From b1cd34c37d048c4f2b114edbfa73e72436ec3a0e Mon Sep 17 00:00:00 2001 From: deniscerri <64997243+deniscerri@users.noreply.github.com> Date: Mon, 8 Dec 2025 16:39:39 +0100 Subject: [PATCH] add creators field to author tag parsing --- .../java/com/deniscerri/ytdl/util/extractors/ytdlp/YTDLPUtil.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/deniscerri/ytdl/util/extractors/ytdlp/YTDLPUtil.kt b/app/src/main/java/com/deniscerri/ytdl/util/extractors/ytdlp/YTDLPUtil.kt index 012526ef..f26f44f2 100644 --- a/app/src/main/java/com/deniscerri/ytdl/util/extractors/ytdlp/YTDLPUtil.kt +++ b/app/src/main/java/com/deniscerri/ytdl/util/extractors/ytdlp/YTDLPUtil.kt @@ -208,7 +208,7 @@ class YTDLPUtil(private val context: Context, private val commandTemplateDao: Co val authorTags = mutableListOf("uploader", "channel", "playlist_uploader", "uploader_id") if (url.isYoutubeURL()) { - authorTags.addAll(0, listOf("artists", "artist")) + authorTags.addAll(0, listOf("artists", "artist", "creators")) } var author = jsonObject.getStringByAny(*authorTags.map { it }.toTypedArray()).removeSuffix(" - Topic") var duration = jsonObject.getIntByAny("duration").toString()