by Robin at 20241127
This commit is contained in:
parent
f85edfa766
commit
ab1c8f3716
|
@ -94,7 +94,7 @@ func OpCancelNotification(ctx *gin.Context) {
|
|||
}
|
||||
|
||||
func OpReloadUnreadCount(ctx *gin.Context) {
|
||||
req := ctx.MustGet("client_req").(base.BaseRequest)
|
||||
req := ctx.MustGet("client_req").(*base.BaseRequest)
|
||||
ec := service.DefaultService.OpReloadNotificationUrc(ctx, req)
|
||||
if ec != errcode.ErrCodeNotificationSrvOk {
|
||||
logger.Error("OpReloadNotificationUrc fail, req: %v, ec: %v", util.ToJson(req), ec)
|
||||
|
|
|
@ -5301,7 +5301,7 @@ func (s *Service) OpCancelNotification(ctx *gin.Context, req *notificationproto.
|
|||
}
|
||||
|
||||
// 重新加载未读总数
|
||||
func (s *Service) OpReloadNotificationUrc(ctx *gin.Context, req base.BaseRequest) (ec errcode.ErrCode) {
|
||||
func (s *Service) OpReloadNotificationUrc(ctx *gin.Context, req *base.BaseRequest) (ec errcode.ErrCode) {
|
||||
ec = errcode.ErrCodeNotificationSrvOk
|
||||
|
||||
go func() {
|
||||
|
|
Loading…
Reference in New Issue