Skip to content

Commit abada8f

Browse files
committed
fix hoistServerWithContext warning
copied from haskell-servant/servant#1484 (comment)
1 parent bc57cd8 commit abada8f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Servant/API/BrowserHeader.hs

+4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
{-# LANGUAGE ScopedTypeVariables #-}
1010
{-# LANGUAGE TypeFamilies #-}
1111
{-# LANGUAGE TypeOperators #-}
12+
{-# LANGUAGE TypeApplications #-}
1213
{-# LANGUAGE UndecidableInstances #-}
1314

1415
module Servant.API.BrowserHeader where
@@ -45,6 +46,9 @@ instance ( KnownSymbol sym
4546

4647
route Proxy = route (Proxy :: Proxy (Header sym a :> sublayout))
4748

49+
hoistServerWithContext _ pc nt s =
50+
hoistServerWithContext (Proxy @sublayout) pc nt . s
51+
4852

4953
-- Ignore BrowserHeader in HasForeign:
5054
instance (KnownSymbol sym, HasForeign lang ftype sublayout)

0 commit comments

Comments
 (0)