Updated link standardisation to remove everything after ampersand

This commit is contained in:
benji7425 2016-12-30 15:28:36 +00:00
parent 77514b08ba
commit 11715d0a3b
1 changed files with 2 additions and 2 deletions

View File

@ -121,8 +121,8 @@ var YouTube = {
var Links = {
standardise: function (link) {
//cheaty way to get around http and https not matching
return link.replace("https://", "http://");
//cheaty way to get around http and https not matching, and quick way to chop off stuff like &feature=youtube etc
return link.replace("https://", "http://").split("&")[0];
},
messageContainsLink: function (message) {
var messageLower = message.toLowerCase();