This commit is contained in:
Nicola Murino
2021-02-11 19:45:52 +01:00
parent 4ddfe41f23
commit 51f110bc7b
31 changed files with 428 additions and 77 deletions

View File

@@ -705,7 +705,7 @@ func (c ConnectionStatus) GetConnectionInfo() string {
func (c ConnectionStatus) GetTransfersAsString() string {
result := ""
for _, t := range c.Transfers {
if len(result) > 0 {
if result != "" {
result += ". "
}
result += t.getConnectionTransferAsString()