summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_attachment_oembed.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/components/post_attachment_oembed.jsx')
-rw-r--r--web/react/components/post_attachment_oembed.jsx9
1 files changed, 8 insertions, 1 deletions
diff --git a/web/react/components/post_attachment_oembed.jsx b/web/react/components/post_attachment_oembed.jsx
index 13c32f744..4b12ee95e 100644
--- a/web/react/components/post_attachment_oembed.jsx
+++ b/web/react/components/post_attachment_oembed.jsx
@@ -14,7 +14,14 @@ export default class PostAttachmentOEmbed extends React.Component {
}
componentWillReceiveProps(nextProps) {
- this.fetchData(nextProps.link);
+ if (nextProps.link !== this.props.link) {
+ this.isLoading = false;
+ this.fetchData(nextProps.link);
+ }
+ }
+
+ componentDidMount() {
+ this.fetchData(this.props.link);
}
fetchData(link) {