minor typo
This commit is contained in:
parent
016abda6d7
commit
6ad9c5ae64
1 changed files with 2 additions and 2 deletions
|
@ -428,13 +428,13 @@ func (u *User) GetBandwidthAsString() string {
|
|||
if u.DownloadBandwidth > 0 {
|
||||
result += utils.ByteCountSI(u.DownloadBandwidth*1000) + "/s."
|
||||
} else {
|
||||
result += "ulimited."
|
||||
result += "unlimited."
|
||||
}
|
||||
result += " Upload: "
|
||||
if u.UploadBandwidth > 0 {
|
||||
result += utils.ByteCountSI(u.UploadBandwidth*1000) + "/s."
|
||||
} else {
|
||||
result += "ulimited."
|
||||
result += "unlimited."
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue