From 2ecda7dbbff5de8364e95d8bf45a3884b0205d69 Mon Sep 17 00:00:00 2001
From: Matt Lott <mattlott@live.com>
Date: Sun, 30 Nov 2014 15:27:12 -0800
Subject: [PATCH] Fix trackPageView options initialization

---
 app/core/Tracker.coffee | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/core/Tracker.coffee b/app/core/Tracker.coffee
index 0c4d6d0a7..3d490de0e 100644
--- a/app/core/Tracker.coffee
+++ b/app/core/Tracker.coffee
@@ -28,7 +28,7 @@ module.exports = class Tracker
     console.log "Would track analytics pageview: /#{name}" if debugAnalytics
     return unless @isProduction and analytics? and not me.isAdmin()
     if includeIntegrations
-      options.integrations = {'All': false}
+      options = integrations: {'All': false}
       for integration in includeIntegrations
         options.integrations[integration] = true
       analytics.page null, "/#{name}", null, options