mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-17 00:21:20 -05:00
Fix project thumbnails for reporting
This commit is contained in:
parent
47754c03ae
commit
706ba78879
1 changed files with 4 additions and 1 deletions
|
@ -388,7 +388,10 @@ class Preview extends React.Component {
|
||||||
const submit = data => this.props.reportProject(this.state.projectId, data, this.props.user.token);
|
const submit = data => this.props.reportProject(this.state.projectId, data, this.props.user.token);
|
||||||
if (this.getProjectThumbnail) {
|
if (this.getProjectThumbnail) {
|
||||||
this.getProjectThumbnail(thumbnail => {
|
this.getProjectThumbnail(thumbnail => {
|
||||||
const data = Object.assign({}, formData, {thumbnail});
|
const data = Object.assign({}, formData, {
|
||||||
|
// Strip the data:image prefix, server just wants the b64 encoded image
|
||||||
|
thumbnail: thumbnail.replace('data:image/png;base64,', '')
|
||||||
|
});
|
||||||
submit(data);
|
submit(data);
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue