Skip to content

Commit

Permalink
Remove double stringily
Browse files Browse the repository at this point in the history
  • Loading branch information
oshoemaker authored Jul 3, 2019
1 parent 3b489fe commit 438b956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/redis_ascoltatore.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ RedisAscoltatore.prototype.publish = function publish(topic, message, options, d
topic += '/';
}

this._client.publish(topic, JSON.stringify(message), function() {
this._client.publish(topic, message, function() {
debug("new message published to " + topic);
defer(done);
});
Expand Down

0 comments on commit 438b956

Please sign in to comment.