From 706531b60da31c53f852e9c104b55a45fb4bd4ab Mon Sep 17 00:00:00 2001
From: Josh Habdas <jhabdas@gmail.com>
Date: Wed, 19 Apr 2017 22:39:20 +0800
Subject: [PATCH] fix(includes/video): use https always (#945)

closes #944
---
 _includes/video | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/_includes/video b/_includes/video
index f7361079f7dc..01b58ddac4d0 100644
--- a/_includes/video
+++ b/_includes/video
@@ -4,7 +4,7 @@
 <!-- Courtesy of embedresponsively.com //-->
 <div class="responsive-video-container">
 {% if video_provider == "vimeo" %}
-  <iframe src="http://player.vimeo.com/video/{{ video_id }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
+  <iframe src="https://player.vimeo.com/video/{{ video_id }}" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
 {% elsif video_provider == "youtube" %}
   <iframe src="https://www.youtube.com/embed/{{ video_id }}" frameborder="0" allowfullscreen></iframe>
 {% endif %}