1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net.websocket: fix building client.v

This commit is contained in:
Delyan Angelov
2020-07-05 18:44:33 +03:00
parent 271786b186
commit 1416c70e73
3 changed files with 3 additions and 3 deletions

View File

@@ -77,7 +77,7 @@ fn on_open(sender voidptr, ws &websocket.Client, x voidptr) {
println('websocket opened.')
}
fn on_message(sender voidptr, mut ws websocket.Client, msg websocket.Message) {
fn on_message(sender voidptr, mut ws websocket.Client, msg &websocket.Message) {
println('Message recieved. Sending it back.')
typ := msg.opcode
if typ == .text_frame {