Skip to content

Commit

Permalink
solr: omit empty string, refs #26561
Browse files Browse the repository at this point in the history
  • Loading branch information
miku committed Sep 26, 2024
1 parent 6dbf68e commit 3e7da0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions formats/finc/solr.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ type Solr5Vufind3 struct {
URL []string `json:"url,omitempty"`
PublishDate []string `json:"publishDate,omitempty"`
Physical []string `json:"physical,omitempty"`
Description string `json:"description"`
Collections []string `json:"collection"` // index/wiki/Kollektionsfacette
Description string `json:"description,omitempty"`
Collections []string `json:"collection,omitempty"` // index/wiki/Kollektionsfacette

ContainerIssue string `json:"container_issue,omitempty"`
ContainerStartPage string `json:"container_start_page,omitempty"`
Expand Down

0 comments on commit 3e7da0c

Please sign in to comment.