From d852f48cdbe6d34023c1442d6bed122f4cc7576f Mon Sep 17 00:00:00 2001 From: Mark Vayngrib Date: Sun, 11 Oct 2015 19:03:18 +0100 Subject: [PATCH] Revert "fix RCTConvert choke converting int to string" This reverts commit 2a69aae5ad15176b3a4e77be47f42adfe9efa75d. --- UdpSocket.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UdpSocket.js b/UdpSocket.js index ca7b5b5..94ebe9c 100644 --- a/UdpSocket.js +++ b/UdpSocket.js @@ -34,7 +34,7 @@ function UdpSocket(options, onmessage) { if (typeof options === 'string') options = { type: options } this.type = options.type - this._id = '' + instances++ + this._id = instances++ this._state = STATE.UNBOUND this._subscription = DeviceEventEmitter.addListener( 'udp-' + this._id + '-data', this._onReceive.bind(this)