Skip to content
Snippets Groups Projects
Commit 82ff54c3 authored by Jan Sladek's avatar Jan Sladek Committed by Björn
Browse files

Dennis reported a bug, where the thumbnails hadn't the right color. Fixed this bug.

parent 9ae78501
No related merge requests found
......@@ -175,7 +175,7 @@ public class ImageUtils {
final String[] imgInfo = extractImageInfo(originalImageString);
// imgInfo isn't null and contains two fields, this is checked by "isBase64EncodedImage"-Method
final String extension = imgInfo[0];
final String extension = "png";
final String base64String = imgInfo[1];
byte[] imageData = Base64.decodeBase64(base64String);
......
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