diff --git a/lib/staccato.rb b/lib/staccato.rb index 7c285dd..368f015 100644 --- a/lib/staccato.rb +++ b/lib/staccato.rb @@ -36,7 +36,7 @@ def self.build_client_id # The tracking endpoint we use to submit requests to GA def self.ga_collection_uri(ssl = false) - url = (ssl ? 'https://ssl' : 'http://www') + '.google-analytics.com/collect' + url = (ssl ? 'https://' : 'http://') + 'www.google-analytics.com/collect' URI(url) end