Skip to content

Commit 39c8741

Browse files
Fix Eq instance for SomeExtension
Co-authored-by: Marko Dimjašević <[email protected]>
1 parent c9ae52e commit 39c8741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/wire-api/src/Wire/API/MLS/KeyPackage.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ data SomeExtension where
179179
instance Eq SomeExtension where
180180
SomeExtension SCapabilitiesExtensionTag caps1 == SomeExtension SCapabilitiesExtensionTag caps2 = caps1 == caps2
181181
SomeExtension SLifetimeExtensionTag lt1 == SomeExtension SLifetimeExtensionTag lt2 = lt1 == lt2
182-
_ == _ = True
182+
_ == _ = False
183183

184184
instance Show SomeExtension where
185185
show (SomeExtension SReservedExtensionTag _) = show ()

0 commit comments

Comments
 (0)