Skip to content

Commit

Permalink
added transform to historical messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenlb committed Jan 19, 2016
1 parent 8517951 commit ff8c49b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pubnub-c3.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ eon.c = {
i = 0;
while (i < msgs.length) {

var a = msgs[i];
var a = options.transform(msgs[i]);

a = appendDate(a.message.eon, a.timetoken)
storeData(a);
Expand Down Expand Up @@ -426,4 +426,4 @@ eon.c = {
};
eon.chart = function(o) {
return new eon.c.create(o);
};
};

0 comments on commit ff8c49b

Please sign in to comment.