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:
commit
a88e8b8b7b
|
@ -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]
|
||||||
|
|
Loading…
Reference in a new issue