From 1f7940711d6fc9bdbbbd75873af1ce13cbfcc8ed Mon Sep 17 00:00:00 2001 From: Xaekai Date: Wed, 18 Feb 2015 18:39:40 -0800 Subject: [PATCH] Resolve missing closing parenthesis on the generic matcher. --- www/js/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/util.js b/www/js/util.js index 95afc6ca..f8b96804 100644 --- a/www/js/util.js +++ b/www/js/util.js @@ -1331,7 +1331,7 @@ function parseMediaLink(url) { }; } // Generic for the rest. - if ((m = url.match(/([a-z]{2}):([^\?&#]+)/)) { + if ((m = url.match(/([a-z]{2}):([^\?&#]+)/))) { return { id: m[2], type: m[1]