1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-23 11:12:40 +01:00

Add 8muses album permalink parts to album data

This allows customizing the directory without breaking changes.
This commit is contained in:
0x1f595 2022-11-29 20:22:00 -08:00
parent b14b33f19e
commit 8cbc05786a

View File

@ -119,6 +119,7 @@ class _8musesAlbumExtractor(Extractor):
return {
"id" : album["id"],
"path" : album["path"],
"parts" : album["permalink"].split('/'),
"title" : album["name"],
"private": album["isPrivate"],
"url" : self.root + album["permalink"],