Mentions légales du service

Skip to content
Snippets Groups Projects

Release v1.3.1

Merged Ilyas Toumlilt requested to merge dev into master
8 files
+ 68
12
Compare changes
  • Side-by-side
  • Inline
Files
8
@@ -47,7 +47,7 @@ fun connectWebSocket(session: Session) {
var regex = expr.toRegex()
val host = regex.find(session.getServiceUrl())!!.groupValues!!.get(2)
GlobalScope.launch {
client?.webSocket(method = HttpMethod.Get, host = host, port = 8999, path = "/") {
client?.webSocket(method = HttpMethod.Get, host = host, port = 8999, path = session.getWebSocketPath()) {
send("""{"appName":""""+session.getDbName()+"""","userId":""""+session.getClientUId()+""""}""")
for (frame in incoming) {
when (frame) {
Loading