From 8b37420eecaba4c6ce49121b2f33375b566b734e Mon Sep 17 00:00:00 2001 From: Cryostrixx Date: Mon, 2 Sep 2024 16:32:22 -0700 Subject: [PATCH] Add implicit string conversion to $flattenedJson in Invoke-WPFImpex.ps1 (#2658) --- functions/public/Invoke-WPFImpex.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/functions/public/Invoke-WPFImpex.ps1 b/functions/public/Invoke-WPFImpex.ps1 index 43d835de..d97f025e 100644 --- a/functions/public/Invoke-WPFImpex.ps1 +++ b/functions/public/Invoke-WPFImpex.ps1 @@ -57,6 +57,7 @@ function Invoke-WPFImpex { } } + $flattenedJson = [string]$flattenedJson Invoke-WPFPresets -preset $flattenedJson -imported $true } }