libgimp: fix XMP modification date separators
Similar to issue #14731, when exporting we incorrectly set the date/month/year separators to : instead of -. This commit fixes that.
This commit is contained in:
parent
3211ab1408
commit
922e409045
1 changed files with 1 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ gimp_image_metadata_save_prepare (GimpImage *image,
|
|||
if (gimp_update_metadata ())
|
||||
{
|
||||
/* XMP uses datetime in ISO 8601 format */
|
||||
datetime_buf = g_date_time_format (datetime, "%Y:%m:%dT%T\%:z");
|
||||
datetime_buf = g_date_time_format (datetime, "%Y-%m-%dT%T\%:z");
|
||||
|
||||
gexiv2_metadata_try_set_tag_string (g2metadata,
|
||||
"Xmp.xmp.ModifyDate",
|
||||
|
|
|
|||
Loading…
Reference in a new issue