From 7412b0a1b1a678b0c4f7caaad2b0078df1d18ba9 Mon Sep 17 00:00:00 2001 From: Connor Turland Date: Thu, 30 Jan 2014 21:39:24 -0500 Subject: [PATCH] fixed one spot where it was trying to send realtime message over redis from the maps controller in save layout --- app/controllers/maps_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/maps_controller.rb b/app/controllers/maps_controller.rb index 69350057..ecf79626 100644 --- a/app/controllers/maps_controller.rb +++ b/app/controllers/maps_controller.rb @@ -183,7 +183,7 @@ class MapsController < ApplicationController @mapping.save #push realtime update for location on map - @mapping.message 'update',@user.id + #@mapping.message 'update',@user.id end end @map.arranged = true