1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-26 04:32:51 +01:00

[warosu] fix 'board_name' metadata

This commit is contained in:
Mike Fährmann 2024-03-06 01:28:47 +01:00
parent 24873c2724
commit 296f20e630
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

View File

@ -50,7 +50,7 @@ class WarosuThreadExtractor(Extractor):
title = text.unescape(text.extr(page, "class=filetitle>", "<"))
return {
"board" : self.board,
"board_name": boardname.rpartition(" - ")[2],
"board_name": boardname.split(" - ")[1],
"thread" : self.thread,
"title" : title,
}