Check for pictshare status ok.

This commit is contained in:
Dessalines 2020-02-27 14:06:29 -05:00
parent 6e6cfa9cf8
commit 76662ca557
1 changed files with 12 additions and 5 deletions

View File

@ -818,12 +818,19 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
) )
.then(res => res.json()) .then(res => res.json())
.then(res => { .then(res => {
if (res.status == 'ok') {
let url = `${window.location.origin}/pictshare/${res.url}`; let url = `${window.location.origin}/pictshare/${res.url}`;
if (res.filetype == 'mp4') { if (res.filetype == 'mp4') {
url += '/raw'; url += '/raw';
} }
this.state.thumbnail = url; this.state.thumbnail = url;
this.setState(this.state); this.setState(this.state);
} else {
console.error(
`Couldn't cache pictshare url: ${this.state.iframely.thumbnail_url}`
);
console.error(res);
}
}); });
} }
}) })