Skip to content
Snippets Groups Projects
Commit e8fcd2fd authored by Jan Sladek's avatar Jan Sladek
Browse files

Fixxed a bug I noticed for ticket #15324, which occured in commit #982b38c9

parent 982b38c9
Branches
No related merge requests found
......@@ -140,7 +140,9 @@ public class ImageUtils {
output.flush();
output.close();
return Base64.encodeBase64String(output.toByteArray());
result.append(Base64.encodeBase64String(output.toByteArray()));
return result.toString();
} catch (IOException e) {
LOGGER.error(e.getLocalizedMessage());
return null;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment