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) { + +}