We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 621255b commit 81c77f0Copy full SHA for 81c77f0
ghcide/src/Development/IDE/Core/RuleTypes.hs
@@ -173,8 +173,8 @@ mkHiFileResult hirModSummary hirHomeMod = HiFileResult{..}
173
hirIfaceFp = fingerprintToBS . getModuleHash . hm_iface $ hirHomeMod -- will always be two bytes
174
hirLinkableFp = case hm_linkable hirHomeMod of
175
Nothing -> ""
176
- Just LM{linkableTime} -> LBS.toStrict $
177
- B.encode (fromEnum $ utctDay linkableTime, fromEnum $ utctDayTime linkableTime)
+ Just (linkableTime -> l) -> LBS.toStrict $
+ B.encode (fromEnum $ utctDay l, fromEnum $ utctDayTime l)
178
179
hirModIface :: HiFileResult -> ModIface
180
hirModIface = hm_iface . hirHomeMod
0 commit comments