Make sure thumbnails are .png

pull/1/head
yflory 2017-11-07 15:04:45 +01:00
parent 0956905ca8
commit c1ba08cfc6
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ define([
var addThumbnail = function (err, thumb, $span, cb) {
var img = new Image();
img.src = thumb.slice(0,5) === 'data:' ? thumb : 'data:;base64,'+thumb;
img.src = thumb.slice(0,5) === 'data:' ? thumb : 'data:image/png;base64,'+thumb;
$span.find('.cp-icon').hide();
$span.prepend(img);
cb($(img));