Skip to content

Commit

Permalink
fix(headerGetters): fixed getSetCookieDecoded Method (#777)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShrutiVerma97 authored Jan 9, 2022
1 parent 2d26f13 commit bd298cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ trait HeaderGetters[+A] { self =>
getHeaderValue(HeaderNames.setCookie)

final def getSetCookiesDecoded: List[Cookie] =
getHeaderValues(HeaderNames.cookie)
getHeaderValues(HeaderNames.setCookie)
.map(Cookie.decodeResponseCookie)
.collect { case Some(cookie) => cookie }

Expand Down

0 comments on commit bd298cf

Please sign in to comment.