From 1357b714cfb8e2f9be17056872d4642ed6bf60df Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 29 May 2024 09:27:15 +0200 Subject: [PATCH] =?UTF-8?q?Nullf=C3=A4higkeit=20zu=20den=20Methoden=20GetE?= =?UTF-8?q?nvelopeUuid=20und=20GetReceiverSignature=20hinzugef=C3=BCgt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Services/EnvelopeGeneratorExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EnvelopeGenerator.Application/Services/EnvelopeGeneratorExtensions.cs b/EnvelopeGenerator.Application/Services/EnvelopeGeneratorExtensions.cs index 7eb3e9cd..a384e2db 100644 --- a/EnvelopeGenerator.Application/Services/EnvelopeGeneratorExtensions.cs +++ b/EnvelopeGenerator.Application/Services/EnvelopeGeneratorExtensions.cs @@ -90,13 +90,13 @@ /// /// The base64 encoded string to decode. /// The envelope UUID. - public static string GetEnvelopeUuid(this string envelopeReceiverId) => envelopeReceiverId.DecodeEnvelopeReceiverId().EnvelopeUuid; + public static string? GetEnvelopeUuid(this string envelopeReceiverId) => envelopeReceiverId.DecodeEnvelopeReceiverId().EnvelopeUuid; /// /// Gets the receiver signature from the decoded envelope receiver ID. /// /// The base64 encoded string to decode. /// The receiver signature. - public static string GetReceiverSignature(this string envelopeReceiverId) => envelopeReceiverId.DecodeEnvelopeReceiverId().ReceiverSignature; + public static string? GetReceiverSignature(this string envelopeReceiverId) => envelopeReceiverId.DecodeEnvelopeReceiverId().ReceiverSignature; } } \ No newline at end of file