minor api change for chat callbacks, and plugins fixed to use the new changes

(which broke after today's niantic site update anyway)
This commit is contained in:
Jon Atkins
2015-03-20 20:53:45 +00:00
parent d98546a173
commit 5298c98fdd
4 changed files with 6 additions and 6 deletions

View File

@ -142,7 +142,7 @@ window.plugin.playerTracker.eventHasLatLng = function(ev, lat, lng) {
window.plugin.playerTracker.processNewData = function(data) {
var limit = plugin.playerTracker.getLimit();
$.each(data.raw.success, function(ind, json) {
$.each(data.result, function(ind, json) {
// skip old data
if(json[1] < limit) return true;