From 419b2096fba6dbadb76fa1f99d7a39e7e6eb5574 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Tue, 6 Sep 2022 10:07:11 -0400 Subject: [PATCH] oh dear missed a case sensitive --- http2.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http2.d b/http2.d index 5b99c18..dcc6dd5 100644 --- a/http2.d +++ b/http2.d @@ -423,7 +423,7 @@ struct HttpResponse { linksLazilyParsed = true; LinkHeader[] ret; - auto hdrPtr = "Link" in headersHash; + auto hdrPtr = "link" in headersHash; if(hdrPtr is null) return ret;