Skip to content

Commit 77d9982

Browse files
authored
Merge pull request #20 from qgis/bug-fix
Fix bug wrong creator.
2 parents 7277af3 + c24dcaa commit 77d9982

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qgis_hub_plugin/gui/resource_browser.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def __init__(self, params: dict):
178178
self.resource_subtype = params.get("resource_subtype", "")
179179
self.uuid = params.get("uuid")
180180
self.name = params.get("name")
181-
self.creator = params.get("name")
181+
self.creator = params.get("creator")
182182
upload_date_string = params.get("upload_date")
183183
self.upload_date = datetime.fromisoformat(upload_date_string)
184184
self.download_count = params.get("download_count")

0 commit comments

Comments
 (0)