1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-27 08:31:20 +02:00

Fixing workspace title generation

This commit is contained in:
Jesús Espino 2021-07-01 11:29:12 +02:00
parent 1020c03924
commit 0811052a9b

View File

@ -194,8 +194,9 @@ func (s *MattermostAuthLayer) GetWorkspace(id string) (*model.Workspace, error)
first := true
for rows.Next() {
if first {
sb.WriteString(", ")
first = false
} else {
sb.WriteString(", ")
}
var name string
if err := rows.Scan(&name); err != nil {