mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-07-05 20:44:04 +00:00
Update direct dependencies where possible
This commit is contained in:
2
vendor/github.com/lrstanley/girc/format.go
generated
vendored
2
vendor/github.com/lrstanley/girc/format.go
generated
vendored
@ -113,7 +113,7 @@ func Fmt(text string) string {
|
||||
|
||||
if last > -1 {
|
||||
// A-Z, a-z, and ","
|
||||
if text[i] != ',' && (text[i] <= 'A' || text[i] >= 'Z') && (text[i] <= 'a' || text[i] >= 'z') {
|
||||
if text[i] != ',' && (text[i] < 'A' || text[i] > 'Z') && (text[i] < 'a' || text[i] > 'z') {
|
||||
last = -1
|
||||
continue
|
||||
}
|
||||
|
Reference in New Issue
Block a user