From ce9e7feabde9b31d5847f6e533feeb0cac23f325 Mon Sep 17 00:00:00 2001 From: Ell Date: Fri, 30 Dec 2016 14:49:59 -0500 Subject: [PATCH] metadata: small fix --- plug-ins/common/metadata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plug-ins/common/metadata.c b/plug-ins/common/metadata.c index 41500f9830..06c95d00a1 100644 --- a/plug-ins/common/metadata.c +++ b/plug-ins/common/metadata.c @@ -397,7 +397,7 @@ metadata_dialog_format_tag_value (GExiv2Metadata *metadata, size = g_utf8_strlen (value_utf8, -1); - if (! truncate || size < TAG_VALUE_MAX_SIZE) + if (! truncate || size <= TAG_VALUE_MAX_SIZE) { result = value_utf8; }