Skip to content

Commit

Permalink
Fix for style
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed Mar 13, 2018
1 parent 0b65be8 commit 323437e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flows/contact.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ func (c *Contact) AddURN(urn urns.URN) bool {
func (c *Contact) HasURN(urn urns.URN) bool {
urn = urn.Normalize("")

for u := range c.urns {
if c.urns[u].URN == urn {
for _, u := range c.urns {
if u.URN == urn {
return true
}
}
Expand Down

0 comments on commit 323437e

Please sign in to comment.