Merge pull request #451 from Xaekai/3.0

Fix raw file links getting parsed as a non-existant ps: shorthand
This commit is contained in:
Calvin Montgomery 2015-02-21 14:34:13 -06:00
commit a88e8b8b7b

View file

@ -1317,21 +1317,21 @@ function parseMediaLink(url) {
/* Shorthand URIs */ /* Shorthand URIs */
// To catch Google Plus by ID alone // To catch Google Plus by ID alone
if ((m = url.match(/(?:gp:)?(\d{21}_\d{19}_\d{19})/))) { if ((m = url.match(/^(?:gp:)?(\d{21}_\d{19}_\d{19})/))) {
return { return {
id: m[1], id: m[1],
type: "gp" type: "gp"
}; };
} }
// So we still trim DailyMotion URLs // So we still trim DailyMotion URLs
if((m = url.match(/dm:([^\?&#_]+)/))) { if((m = url.match(/^dm:([^\?&#_]+)/))) {
return { return {
id: m[1], id: m[1],
type: "dm" type: "dm"
}; };
} }
// 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]