Also filter out #s from YouTube videos

This commit is contained in:
raylu 2010-10-18 14:58:49 -04:00
parent fe1bae990a
commit ce202d03f1
1 changed files with 4 additions and 2 deletions

View File

@ -36,10 +36,12 @@ func handlePrivmsg(conn *irc.Conn, line *irc.Line) {
video = line.Text[27:]
}
if video != "" {
amp := strings.Index(video, "&")
if amp > -1 {
if amp := strings.Index(video, "&"); amp > -1 {
video = video[0:amp]
}
if pound := strings.Index(video, "#"); pound > -1 {
video = video[0:pound]
}
youtube(conn, line.Nick, video, target)
}