rename as ToEnvelopeKey

This commit is contained in:
2025-09-01 15:43:13 +02:00
parent 20d312a84e
commit 6a34b65825
5 changed files with 8 additions and 8 deletions

View File

@@ -458,7 +458,7 @@ public class HomeController : ViewControllerBase
return await _envRcvService.ReadByUuidSignatureAsync(uuid: erro.Envelope!.Uuid, erro.Receiver!.Signature).ThenAsync(
SuccessAsync: async er =>
{
var envelopeKey = (er.Envelope!.Uuid, er.Receiver!.Signature).EncodeEnvelopeReceiverId();
var envelopeKey = (er.Envelope!.Uuid, er.Receiver!.Signature).ToEnvelopeKey();
//TODO: implement multi-threading to history process (Task)
var hist_res = await _historyService.RecordAsync((int)erro.EnvelopeId, erro.AddedWho, EnvelopeStatus.EnvelopeViewed);