Changeset 303 in code for trunk/irc.go
- Timestamp:
- May 27, 2020, 9:48:08 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/irc.go
r293 r303 275 275 } 276 276 277 func copyClientTags(tags irc.Tags) irc.Tags { 278 t := make(irc.Tags, len(tags)) 279 for k, v := range tags { 280 if strings.HasPrefix(k, "+") { 281 t[k] = v 282 } 283 } 284 return t 285 } 286 277 287 type batch struct { 278 288 Type string
Note:
See TracChangeset
for help on using the changeset viewer.