Skip to content

Commit

Permalink
fix feishu api v2 can't @user with email.
Browse files Browse the repository at this point in the history
  • Loading branch information
IEnglishBad authored Nov 29, 2023
1 parent c75472e commit 1bb813f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/feishu.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func PostToFeiShuv2(title, text, Fsurl, userOpenId, logsign string) string {
OpenIds := strings.Split(userOpenId, ",")
OpenIdtext := ""
for _, OpenId := range OpenIds {
OpenIdtext += "<at user_id=" + OpenId + " id=" + OpenId + "></at>"
OpenIdtext += "<at user_id=" + OpenId + " id=" + OpenId + " email=" + OpenId + "></at>"
}
SendContent += OpenIdtext
}
Expand Down

0 comments on commit 1bb813f

Please sign in to comment.