Change param name

This commit is contained in:
Mario Danic 2018-10-18 12:10:28 +02:00
parent 15b53c701a
commit 6e4d93a5c1

View File

@ -225,9 +225,9 @@ public class MagicWebSocketInstance extends WebSocketListener {
return copyJob; return copyJob;
} }
public void requestOfferForSessionIdWithType(String sessionId, String roomType) { public void requestOfferForSessionIdWithType(String sessionIdParam, String roomType) {
try { try {
webSocket.send(LoganSquare.serialize(webSocketConnectionHelper.getAssembledRequestOfferModel(sessionId, roomType))); webSocket.send(LoganSquare.serialize(webSocketConnectionHelper.getAssembledRequestOfferModel(sessionIdParam, roomType)));
} catch (IOException e) { } catch (IOException e) {
Log.e(TAG, "Failed to offer request"); Log.e(TAG, "Failed to offer request");
} }