mirror of
https://github.com/simplex-chat/simplexmq.git
synced 2026-07-13 02:59:28 +00:00
lib: fix incorrect encoding of Signature (incompatible with decoding, but never used together) - breaks backward compatibility for remote control connections (#1765)
* lib: fix incorrect StrEncoding of Signature (it was not compatible with decoding, but was never used) * align encoding with used in links (breaks backward compatibility)
This commit is contained in:
@@ -108,9 +108,9 @@ instance StrEncoding RCSignedInvitation where
|
||||
mconcat
|
||||
[ strEncode invitation,
|
||||
"&ssig=",
|
||||
strEncode $ C.signatureBytes ssig,
|
||||
strEncode ssig,
|
||||
"&idsig=",
|
||||
strEncode $ C.signatureBytes idsig
|
||||
strEncode idsig
|
||||
]
|
||||
|
||||
strP = do
|
||||
|
||||
Reference in New Issue
Block a user