Skip to content

Commit

Permalink
fix: typeo on additional header set
Browse files Browse the repository at this point in the history
  • Loading branch information
nugaon committed Jun 6, 2024
1 parent 4e1aea7 commit 061bbca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/api/feed.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func (s *Service) feedGetHandler(w http.ResponseWriter, r *http.Request) {
w.Header().Set(ContentLengthHeader, strconv.Itoa(len(wc.Data())))
// include additional headers
for name, values := range additionalHeaders {
w.Header().Set(name, strings.Join(values, "; "))
w.Header().Set(name, strings.Join(values, ", "))
}
_, _ = io.Copy(w, bytes.NewReader(wc.Data()))
return
Expand Down

0 comments on commit 061bbca

Please sign in to comment.