Merge pull request #660 from Xaekai/UstreamURLs

Fix UStream URL Generation
This commit is contained in:
Calvin Montgomery 2017-05-14 18:38:33 -07:00 committed by GitHub
commit 35a01b6127
2 changed files with 2 additions and 2 deletions

View File

@ -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":

View File

@ -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":