diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2023-09-12 22:08:54 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2023-09-16 09:58:13 +0200 |
commit | 07893b2edd6f872f9549b3e0eb5443208cdea66a (patch) | |
tree | fdb18dd8b6b478c6a0a021a4c342fcfe6a64154a /src/Service.hs | |
parent | e6a5ec99e0f94ec33c0e52e6cf64cfbb7f7d5e97 (diff) |
Protocol: use cookies during whole plaintext phase
Diffstat (limited to 'src/Service.hs')
-rw-r--r-- | src/Service.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Service.hs b/src/Service.hs index a3a19a4..580c17d 100644 --- a/src/Service.hs +++ b/src/Service.hs @@ -98,7 +98,7 @@ data SomeStorageWatcher s = forall a. Eq a => SomeStorageWatcher (Stored LocalSt newtype ServiceID = ServiceID UUID - deriving (Eq, Ord, StorableUUID) + deriving (Eq, Ord, Show, StorableUUID) mkServiceID :: String -> ServiceID mkServiceID = maybe (error "Invalid service ID") ServiceID . U.fromString |