mirror of
https://github.com/calzoneman/sync.git
synced 2024-09-13 04:32:09 +00:00
Merge pull request #660 from Xaekai/UstreamURLs
Fix UStream URL Generation
This commit is contained in:
commit
35a01b6127
@ -233,7 +233,7 @@
|
||||
case "im":
|
||||
return "https://imgur.com/a/" + id;
|
||||
case "us":
|
||||
return "https://ustream.tv/" + id;
|
||||
return "https://ustream.tv/channel/" + id;
|
||||
case "gd":
|
||||
return "https://docs.google.com/file/d/" + id;
|
||||
case "fi":
|
||||
|
@ -43,7 +43,7 @@ function formatURL(data) {
|
||||
case "im":
|
||||
return "https://imgur.com/a/" + data.id;
|
||||
case "us":
|
||||
return "https://ustream.tv/" + data.id;
|
||||
return "https://ustream.tv/channel/" + data.id;
|
||||
case "gd":
|
||||
return "https://docs.google.com/file/d/" + data.id;
|
||||
case "fi":
|
||||
|
Loading…
x
Reference in New Issue
Block a user