From 48d8d71c15bddbf28818402b9cc013f3864bf148 Mon Sep 17 00:00:00 2001 From: Christoph Hannappel <37103421+ChristophHannappel@users.noreply.github.com> Date: Wed, 20 Mar 2024 12:05:33 +0100 Subject: [PATCH] Fixed Typo at Unprotect-Datum.ps1 --- Datum.ProtectedData/public/Unprotect-Datum.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Datum.ProtectedData/public/Unprotect-Datum.ps1 b/Datum.ProtectedData/public/Unprotect-Datum.ps1 index 06f32bb..76a04c8 100644 --- a/Datum.ProtectedData/public/Unprotect-Datum.ps1 +++ b/Datum.ProtectedData/public/Unprotect-Datum.ps1 @@ -107,10 +107,10 @@ function Unprotect-Datum { } Write-verbose "Calling Unprotect-Data $($PSCmdlet.ParameterSetName)" Switch ($PSCmdlet.ParameterSetName) { - 'ByCertificae' { $UnprotectDataParams.Add('Certificate', $Certificate)} + 'ByCertificate' { $UnprotectDataParams.Add('Certificate', $Certificate)} 'ByPassword' { $UnprotectDataParams.Add('Password', $Password) } } Unprotect-Data @UnprotectDataParams } -} \ No newline at end of file +}