From 97a7af158d3d0e1a231ec1aabda5c98973705ca2 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Thu, 17 Oct 2024 11:43:22 +0800 Subject: [PATCH] 1 --- server/imserver/model/friend.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/server/imserver/model/friend.go b/server/imserver/model/friend.go index 156e3d2f..e4e2c501 100644 --- a/server/imserver/model/friend.go +++ b/server/imserver/model/friend.go @@ -35,6 +35,7 @@ func (this *friend) Force(accountId1 string, accountId2 string, nowTime int64, }, func (err error, lastInsertId int64, rowsAffected int64) { cb(err, lastInsertId, rowsAffected) + this.updateAddFriendTask(accountId1, accountId2) }, func (ds *f5.DataSet) bool { return true @@ -56,3 +57,7 @@ func (this *friend) DeleteSoft(accountId1 string, accountId2 string, }, cb) } + +func (this *friend) updateAddFriendTask(accountId1 string, accountId2 string) { + +}