fix: conn args validation

test-errcode
Gordon 2 years ago
parent 8b76ecd84e
commit bd2d333a8d

@ -194,7 +194,7 @@ func (ws *WsServer) wsHandler(w http.ResponseWriter, r *http.Request) {
return
}
platformID, exists = context.Query(PlatformID)
if !exists {
if !exists || utils.StringToInt(platformID) == 0 {
httpError(context, errs.ErrConnArgsErr)
return
}

Loading…
Cancel
Save