mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
s/fingerprint/fingerpring.hex()/
This commit is contained in:
@@ -114,7 +114,7 @@ pub async fn dc_get_securejoin_qr(context: &Context, group_chat_id: ChatId) -> O
|
|||||||
|
|
||||||
Some(format!(
|
Some(format!(
|
||||||
"OPENPGP4FPR:{}#a={}&g={}&x={}&i={}&s={}",
|
"OPENPGP4FPR:{}#a={}&g={}&x={}&i={}&s={}",
|
||||||
fingerprint,
|
fingerprint.hex(),
|
||||||
self_addr_urlencoded,
|
self_addr_urlencoded,
|
||||||
&group_name_urlencoded,
|
&group_name_urlencoded,
|
||||||
&chat.grpid,
|
&chat.grpid,
|
||||||
@@ -129,7 +129,11 @@ pub async fn dc_get_securejoin_qr(context: &Context, group_chat_id: ChatId) -> O
|
|||||||
// parameters used: a=n=i=s=
|
// parameters used: a=n=i=s=
|
||||||
Some(format!(
|
Some(format!(
|
||||||
"OPENPGP4FPR:{}#a={}&n={}&i={}&s={}",
|
"OPENPGP4FPR:{}#a={}&n={}&i={}&s={}",
|
||||||
fingerprint, self_addr_urlencoded, self_name_urlencoded, &invitenumber, &auth,
|
fingerprint.hex(),
|
||||||
|
self_addr_urlencoded,
|
||||||
|
self_name_urlencoded,
|
||||||
|
&invitenumber,
|
||||||
|
&auth,
|
||||||
))
|
))
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user