[khinsider] fix metadata extraction

This commit is contained in:
Mike Fährmann
2022-12-07 21:36:34 +01:00
parent 1c25cc7a3e
commit 989ec9fc79

View File

@@ -65,7 +65,7 @@ class KhinsiderSoundtrackExtractor(AsynchronousMixin, Extractor):
"count": text.parse_int(extr("Number of Files: <b>", "<")),
"size" : text.parse_bytes(extr("Total Filesize: <b>", "<")[:-1]),
"date" : extr("Date Added: <b>", "<"),
"type" : extr("Album type: <b>", "<"),
"type" : text.remove_html(extr("Album type: <b>", "</b>")),
}}
def tracks(self, page):