Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/azatoth/minidlna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--metadata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/metadata.c b/metadata.c
index 71e4acf..6489101 100644
--- a/metadata.c
+++ b/metadata.c
@@ -605,7 +605,7 @@ GetImageMetadata(const char * path, char * name)
strncpyt(model, exif_entry_get_value(e, b, sizeof(b)), sizeof(model));
if( !strcasestr(model, make) )
snprintf(model, sizeof(model), "%s %s", make, exif_entry_get_value(e, b, sizeof(b)));
- m.creator = escape_tag(model, 1);
+ m.creator = escape_tag(trim(model), 1);
}
}
//DEBUG DPRINTF(E_DEBUG, L_METADATA, " * model: %s\n", model);