[gofile] fix "KeyError: 'childrenIds'" (#5993)

pull/6001/head
Mike Fährmann 1 month ago
parent c51475273f
commit 7f0f407d88
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -47,8 +47,7 @@ class GofileFolderExtractor(Extractor):
raise exception.AuthorizationError("Password required")
num = 0
for content_id in folder["childrenIds"]:
content = contents[content_id]
for content in contents.values():
content["folder"] = folder
if content["type"] == "file":

@ -6,5 +6,5 @@
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
__version__ = "1.27.3"
__version__ = "1.27.4-dev"
__variant__ = None

Loading…
Cancel
Save