mirror of
https://github.com/PretendoNetwork/wiiu-chat-secure.git
synced 2026-03-21 17:44:55 -05:00
fix: remove brackets around update
Some checks failed
Build and Publish Docker Image / build-publish (push) Has been cancelled
Some checks failed
Build and Publish Docker Image / build-publish (push) Has been cancelled
This commit is contained in:
parent
7f8fad8990
commit
a15e473fbf
|
|
@ -6,7 +6,7 @@ import (
|
|||
)
|
||||
|
||||
func EndCallRinging(caller types.PID) {
|
||||
_, err := Postgres.Exec(`UPDATE ongoingcalls SET (ringing = $1) WHERE caller_pid = $2;`, false, caller)
|
||||
_, err := Postgres.Exec(`UPDATE ongoingcalls SET ringing = $1 WHERE caller_pid = $2;`, false, caller)
|
||||
if err != nil {
|
||||
globals.Logger.Critical(err.Error())
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user