use HttpUnprocessableEntity if already broadcasting.

This commit is contained in:
Miroslav Šedivý 2020-11-18 23:05:26 +01:00
parent ef03f9ec9d
commit 428d6939ec

View File

@ -32,7 +32,7 @@ func (h *RoomHandler) boradcastStart(w http.ResponseWriter, r *http.Request) {
} }
if h.capture.BroadcastEnabled() { if h.capture.BroadcastEnabled() {
utils.HttpBadRequest(w, "Server is already broadcasting.") utils.HttpUnprocessableEntity(w, "Server is already broadcasting.")
return return
} }
@ -53,7 +53,7 @@ func (h *RoomHandler) boradcastStart(w http.ResponseWriter, r *http.Request) {
func (h *RoomHandler) boradcastStop(w http.ResponseWriter, r *http.Request) { func (h *RoomHandler) boradcastStop(w http.ResponseWriter, r *http.Request) {
if !h.capture.BroadcastEnabled() { if !h.capture.BroadcastEnabled() {
utils.HttpBadRequest(w, "Server is not broadcasting.") utils.HttpUnprocessableEntity(w, "Server is not broadcasting.")
return return
} }