File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ import Control.Monad
2626import qualified Data.Aeson as J
2727import qualified Data.Default
2828import Data.Either
29+ import Data.Hashable (unhashed )
2930import qualified Data.List as List
3031import qualified Data.Map as Map
3132import Data.Maybe
@@ -599,7 +600,7 @@ getClientConfig lf = fromMaybe Data.Default.def <$> LSP.config lf
599600-- You can use this function to access it from shake Rules
600601getClientConfigAction :: Action Config
601602getClientConfigAction = do
602- mbVal <- useNoFile_ GetClientSettings
603+ mbVal <- unhashed <$> useNoFile_ GetClientSettings
603604 logm $ " getClientConfigAction:clientSettings:" ++ show mbVal
604605 case J. fromJSON <$> mbVal of
605606 Just (J. Success c) -> return c
You can’t perform that action at this time.
0 commit comments