Resolve missing closing parenthesis on the generic matcher.

This commit is contained in:
Xaekai 2015-02-18 18:39:40 -08:00
parent 5c6a966e6f
commit 1f7940711d
1 changed files with 1 additions and 1 deletions

View File

@ -1331,7 +1331,7 @@ function parseMediaLink(url) {
}; };
} }
// Generic for the rest. // Generic for the rest.
if ((m = url.match(/([a-z]{2}):([^\?&#]+)/)) { if ((m = url.match(/([a-z]{2}):([^\?&#]+)/))) {
return { return {
id: m[2], id: m[2],
type: m[1] type: m[1]