Remove JustinTV support as it is no longer in service

This commit is contained in:
calzoneman 2014-08-13 13:51:09 -05:00
parent 735b2fcd07
commit dc3efd94c8
4 changed files with 0 additions and 76 deletions

View file

@ -575,20 +575,6 @@ var Getters = {
callback(false, media);
},
/* justin.tv */
jt: function (id, callback) {
var m = id.match(/([\w-]+)/);
if (m) {
id = m[1];
} else {
callback("Invalid ID", null);
return;
}
var title = "Justin.tv - " + id;
var media = new Media(id, title, "--:--", "jt");
callback(false, media);
},
/* ustream.tv */
us: function (id, callback) {
/**

View file

@ -251,8 +251,6 @@
return "http://livestream.com/" + id;
case "tw":
return "http://twitch.tv/" + id;
case "jt":
return "http://justin.tv/" + id;
case "rt":
return id;
case "jw":
@ -274,7 +272,6 @@
switch (type) {
case "li":
case "tw":
case "jt":
case "us":
case "rt":
case "cu":