diff Core/Toolbox.cpp @ 1641:4e56b5a206b7

Support of binary tags encoded using data URI scheme
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 23 Sep 2015 12:43:05 +0200
parents 334d3a92ed83
children a0a4fa28624c
line wrap: on
line diff
--- a/Core/Toolbox.cpp	Wed Sep 23 12:02:39 2015 +0200
+++ b/Core/Toolbox.cpp	Wed Sep 23 12:43:05 2015 +0200
@@ -1021,7 +1021,7 @@
     if (regex_match(source.c_str(), what, pattern))
     {
       mime = what[1];
-      content = what[2];
+      DecodeBase64(content, what[2]);
     }
     else
     {