Don't encode the tracking URL, only the event & args.
This commit is contained in:
@@ -453,7 +453,8 @@ public class Application
|
|||||||
try {
|
try {
|
||||||
String suffix = _trackingURLSuffix == null ? "" : _trackingURLSuffix;
|
String suffix = _trackingURLSuffix == null ? "" : _trackingURLSuffix;
|
||||||
String ga = getGATrackingCode();
|
String ga = getGATrackingCode();
|
||||||
return _trackingURL == null ? null : new URL(encodePath(_trackingURL + event + suffix + ga));
|
return _trackingURL == null ? null :
|
||||||
|
new URL(_trackingURL + encodePath(event + suffix + ga));
|
||||||
} catch (MalformedURLException mue) {
|
} catch (MalformedURLException mue) {
|
||||||
log.warning("Invalid tracking URL", "path", _trackingURL, "event", event, "error", mue);
|
log.warning("Invalid tracking URL", "path", _trackingURL, "event", event, "error", mue);
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Reference in New Issue
Block a user