Skip to content

Commit

Permalink
Fix regex for sips (SSL for sip)
Browse files Browse the repository at this point in the history
  • Loading branch information
Loic Tosser committed Jul 26, 2019
1 parent f31c842 commit 86c8684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/sofia_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

var (
dataParser = regexp.MustCompile(`^sip:.+?@(.+:\d+)`)
dataParser = regexp.MustCompile(`^sips?:.+?@(.+:\d+)`)
runningParser = regexp.MustCompile(`^RUNNING \((\d+)\)`)
)

Expand Down

0 comments on commit 86c8684

Please sign in to comment.