Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro committed Apr 17, 2022
1 parent f196178 commit 257ca31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/handler/ws.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func Websocket(w http.ResponseWriter, r *http.Request) {
case "voice-connect", "voice-disconnect", "voice-data":
ws.BroadcastMessageRaw(smg)
default:
util.LogError("ws: unhandled event discarded: %s", string(smg.GetStringBytes("type")))
util.LogError("ws: unhandled event discarded:", string(smg.GetStringBytes("type")))
}
}

Expand Down
2 changes: 1 addition & 1 deletion www/chat/js/ws.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as ui from "./ui.js";
import * as api from "./api/index.js";
import { Channel } from "./ui.channel.js";
import { output, el_uonline, context, audio_buffer_size, vc_user_list } from "./ui.util.js";
import { setDataBinding } from "./util.js";
import { create_element, dcTN, setDataBinding } from "./util.js";

//
export const M = {
Expand Down

0 comments on commit 257ca31

Please sign in to comment.