Skip to content

Commit a3932c1

Browse files
author
Devendra
committed
add connection id support
1 parent 438bab3 commit a3932c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/srcPubnubApi/com/pubnub/api/PubnubCoreAsync.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ private void _leave(String channel, String channelGroup, Hashtable params, Callb
658658
if (!PubnubUtil.isEmptyString(channelGroup))
659659
params.put("channel-group", channelGroup);
660660

661-
//params.put("connectionid", this.connectionid);
661+
params.put("connectionid", this.connectionid);
662662
this.connectionid = getNewConnectionId();
663663

664664
HttpRequest hreq = new HttpRequest(urlArgs, params,
@@ -1173,7 +1173,7 @@ private void _subscribe_base(boolean fresh, boolean dar, Worker worker) {
11731173

11741174
// add connection id
11751175

1176-
//params.put("connectionid",this.connectionid);
1176+
params.put("connectionid",this.connectionid);
11771177

11781178

11791179
HttpRequest hreq = new HttpRequest(urlComponents, params,

0 commit comments

Comments
 (0)