FumesAI commited on
Commit
e65f129
1 Parent(s): 609e300

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +1 -1
index.html CHANGED
@@ -207,7 +207,7 @@
207
  socket.on('response', function(data) {
208
  if(data.img!=null || data.img!=undefined){
209
  var img = document.createElement('img');
210
- img.src = 'data:image/jpeg;base64,' + data.img;
211
  messages.appendChild(img);
212
  }
213
  else{
 
207
  socket.on('response', function(data) {
208
  if(data.img!=null || data.img!=undefined){
209
  var img = document.createElement('img');
210
+ img.src = data.img;
211
  messages.appendChild(img);
212
  }
213
  else{