From 634c948ddfce8d0538794a014e9cf4b179afeff5 Mon Sep 17 00:00:00 2001 From: MichaelOultram Date: Mon, 27 Jul 2015 22:49:53 +0100 Subject: [PATCH] Fixing build issues --- service_youtube.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/service_youtube.go b/service_youtube.go index 67aefb7..18f8f6d 100644 --- a/service_youtube.go +++ b/service_youtube.go @@ -33,12 +33,12 @@ type YouTube struct { } // Name of the service -func (y *Youtube) ServiceName() string { +func (y Youtube) ServiceName() string { return "Youtube" } // Checks to see if service will accept URL -func (y *Youtube) URLRegex(url string) bool { +func (y Youtube) URLRegex(url string) bool { youtubePatterns := []string{ `https?:\/\/www\.youtube\.com\/watch\?v=([\w-]+)(\&t=\d*m?\d*s?)?`, `https?:\/\/youtube\.com\/watch\?v=([\w-]+)(\&t=\d*m?\d*s?)?`, @@ -62,7 +62,7 @@ func (y *Youtube) URLRegex(url string) bool { } // Creates the requested song/playlist and adds to the queue -func (y *Youtube) NewRequest(user *gumble.User, url string) { +func (y Youtube) NewRequest(user *gumble.User, url string) { }