Rename WebSocketService sendJSON() -> send()

This commit is contained in:
Kristóf Tóth
2019-08-15 21:24:54 +02:00
parent 614019fbff
commit 24c994c41e
6 changed files with 7 additions and 7 deletions

View File

@ -72,7 +72,7 @@ export class DashboardComponent implements OnInit, OnDestroy {
sendReadyIfNeeded() {
if (config.dashboard.sendReadyAfterPageReload) {
setTimeout(() => this.webSocketService.sendJSON({'key': 'frontend.ready'}));
setTimeout(() => this.webSocketService.send({'key': 'frontend.ready'}));
}
}