| Summary: | SmugMug exporter album list is a flat list of gallery names and ignores folder structure | ||
|---|---|---|---|
| Product: | [Applications] digikam | Reporter: | dw-kde |
| Component: | Plugin-WebService-SmugMug | Assignee: | Digikam Developers <digikam-bugs-null> |
| Status: | REPORTED --- | ||
| Severity: | wishlist | CC: | tech |
| Priority: | NOR | ||
| Version First Reported In: | 7.10.0 | ||
| Target Milestone: | --- | ||
| Platform: | Kubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
dw-kde
2023-06-26 00:42:33 UTC
In SmugMug I created this test structure:
/testFolder/testSubFolder/testGallery
That is displayed in the exporter album list as:
testGallery
In the console logs while loading the exporter dialog, I see:
unknown: album "JsTS3v,testGallery,7R3m63,testGallery,,,1,,0"
In the JSON for parseResponseListAlbum, I see:
{
"Response": {
"Album": [
{
"AlbumKey": "7R3m63",
"Name": "testGallery",
"NiceName": "TestGallery",
"NodeID": "JsTS3v",
"Uris": { ... }
"UrlPath": "/TestFolder/TestSubFolder/TestGallery",
}
]
}
}
There is data in the "Uris" object that could be used to assemble a fancy interactive tree structure, which would be nice, but it seems like the simple solution is to just display "UrlPath" in the album list instead of "Name".
|