From 83d1840af593962448e1dcf9c8f2021be709398f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Renaudeau?= Date: Wed, 2 Sep 2015 13:38:11 +0200 Subject: [PATCH] Fix #3 --- RNGL/GLImage.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RNGL/GLImage.m b/RNGL/GLImage.m index 6d25620..53334fc 100644 --- a/RNGL/GLImage.m +++ b/RNGL/GLImage.m @@ -78,7 +78,7 @@ RCT_NOT_IMPLEMENTED(-init) // Load the image (without resizing it) - if (![_src hasPrefix:@"http://"] && ![_src hasPrefix:@"http://"]) { + if (![_src hasPrefix:@"http://"] && ![_src hasPrefix:@"https://"]) { self.image = [UIImage imageNamed:_src]; if(_onload) _onload(); } else { -- 2.26.2