diff options
-rw-r--r-- | pluginManager.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pluginManager.js b/pluginManager.js index f28590a..629a4e7 100644 --- a/pluginManager.js +++ b/pluginManager.js @@ -312,7 +312,7 @@ Plugin.prototype = { // {{{ headers: {} }; - if (url && /^(http|ftp):\/\//.test(url)){ + if (url && /^(https?|ftp):\/\//.test(url)){ let xhr = util.httpGet(url); let version = ''; let source = xhr.responseText || ''; |