mirror of https://github.com/calzoneman/sync.git
Resolve missing closing parenthesis on the generic matcher.
This commit is contained in:
parent
5c6a966e6f
commit
1f7940711d
|
@ -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]
|
||||
|
|
Loading…
Reference in New Issue