jlelse
/
kis3
Archived
1
Fork 0

Set first to "Undefined" when empty

This commit is contained in:
Jan-Lukas Else 2019-04-09 14:31:34 +02:00
parent 373b742f17
commit 0ba4c2d258
1 changed files with 3 additions and 0 deletions

View File

@ -112,6 +112,9 @@ func (db *Database) request(request *ViewsRequest) (resultRows []*RequestResultR
_ = rows.Close()
return
}
if first == "" {
first = "Undefined"
}
resultRows = append(resultRows, &RequestResultRow{
First: first,
Second: second,