🐛 Fix notify and others

This commit is contained in:
2024-04-06 23:04:53 +08:00
parent 476466f8c6
commit 50f2d88abc
3 changed files with 8 additions and 6 deletions

View File

@ -130,7 +130,7 @@ func exchangeCallToken(c *fiber.Ctx) error {
return fiber.NewError(fiber.StatusNotFound, err.Error())
}
tk, err := services.EncodeCallToken(call, user)
tk, err := services.EncodeCallToken(user)
if err != nil {
return fiber.NewError(fiber.StatusInternalServerError, err.Error())
} else {