removed connection keep alive header (#421)

This commit is contained in:
gohumble 2022-10-06 09:48:23 +02:00 committed by GitHub
parent 9e8958ece2
commit ec679d5e6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -144,7 +144,6 @@ func (s Service) InvoiceStream(w http.ResponseWriter, r *http.Request) {
user := telegram.LoadUser(r.Context())
w.Header().Set("Content-Type", "application/stream+json")
w.Header().Set("Cache-Control", "no-cache")
w.Header().Set("Connection", "keep-alive")
flusher, err := w.(http.Flusher)
if !err {
http.Error(w, "Streaming unsupported!", http.StatusInternalServerError)