Skip to content

Commit

Permalink
fix b64
Browse files Browse the repository at this point in the history
  • Loading branch information
TA2k committed Nov 28, 2024
1 parent f5a3a18 commit 8e95569
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ class Bmw extends utils.Adapter {
},
native: {},
});
await this.setState(vin + '.images.' + view, 'data:image/png;' + base64, true);
await this.setState(vin + '.images.' + view, 'data:image/jpeg;base64,' + base64, true);
})
.catch((error) => {
this.log.error('fetch images failed ' + view);
Expand Down

0 comments on commit 8e95569

Please sign in to comment.