Hi
During the development of my Lightroom Classic plugin to publish photos to Piwigo, I came across a difference between the results returned by pwg.tags.getList on v15 against v16 (both JSON format)
On v16, I get a column name_raw for each tag returned -
for e.g.
{
id: 77,
name: "Acanthochitona crinita",
url_name: "acanthochitona_crinita",
lastmodified: "2023-11-10 13:26:56",
counter: 1,
name_raw: "Acanthochitona crinita",
url: "http://xxxxxxxxxxxxxxxxxx/index.php?/tags/77-acanthochitona_crinita"
},
and on v15.7 name_raw is missing - I get
{
id: 77,
name: "Acanthochitona crinita",
url_name: "acanthochitona_crinita",
lastmodified: "2023-11-10 13:26:56",
counter: 1,
url: http://xxxxxxxxxxxxxxxx/index.php?/tags/77-acanthochitona_crinita
},
Can I confirm that this is a v15 to v16 change rather than something else I'm missing in how I'm accessing the api?
Thank you
Offline