- go version bump

- go fix
This commit is contained in:
2026-02-20 16:11:11 +05:30
parent 166b3fda5c
commit a048cb0d73
7 changed files with 40 additions and 24 deletions

View File

@@ -98,10 +98,8 @@ func (m *Message) getRecipients() ([]string, error) {
}
func addAddress(list []string, addr string) []string {
for _, a := range list {
if addr == a {
return list
}
if slices.Contains(list, addr) {
return list
}
return append(list, addr)