From 23ccfc845ca2350075f6027e16c6206fc7b71716 Mon Sep 17 00:00:00 2001 From: Joram Wilander Date: Mon, 26 Jun 2017 08:16:57 -0400 Subject: Move remaining actions over to use redux and v4 endpoints (#6720) --- webapp/components/youtube_video/youtube_video.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'webapp/components/youtube_video/youtube_video.jsx') diff --git a/webapp/components/youtube_video/youtube_video.jsx b/webapp/components/youtube_video/youtube_video.jsx index 5151e6576..34a0ed14c 100644 --- a/webapp/components/youtube_video/youtube_video.jsx +++ b/webapp/components/youtube_video/youtube_video.jsx @@ -1,7 +1,7 @@ // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See License.txt for license information. -import WebClient from 'client/web_client.jsx'; +import {getYoutubeVideoInfo} from 'actions/integration_actions.jsx'; import * as Utils from 'utils/utils.jsx'; const ytRegex = /(?:http|https):\/\/(?:www\.|m\.)?(?:(?:youtube\.com\/(?:(?:v\/)|(?:(?:watch|embed\/watch)(?:\/|.*v=))|(?:embed\/)|(?:user\/[^/]+\/u\/[0-9]\/)))|(?:youtu\.be\/))([^#&?]*)/; @@ -98,7 +98,7 @@ export default class YoutubeVideo extends React.PureComponent { componentDidMount() { const key = global.window.mm_config.GoogleDeveloperKey; if (key) { - WebClient.getYoutubeVideoInfo(key, this.state.videoId, + getYoutubeVideoInfo(key, this.state.videoId, this.handleReceivedMetadata, this.handleMetadataError); } else { this.loadWithoutKey(); -- cgit v1.2.3-1-g7c22