From 53671d64fc3a71a741b670979ead3af3a1923477 Mon Sep 17 00:00:00 2001 From: amd64fox <62529699+amd64fox@users.noreply.github.com> Date: Mon, 8 Jan 2024 22:16:35 +0300 Subject: [PATCH] fixed encoding for github.io --- run.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run.ps1 b/run.ps1 index d2871cc..832a35a 100644 --- a/run.ps1 +++ b/run.ps1 @@ -293,6 +293,7 @@ function CallLang($clg) { try { $response = (iwr -Uri $urlLang -UseBasicParsing).Content + if ($mirror) { $response = [System.Text.Encoding]::UTF8.GetString($response) } Invoke-Expression $response } catch { @@ -1645,4 +1646,4 @@ extract -counts 'exe' -helper 'Binary' # Start Spotify if ($start_spoti) { Start-Process -WorkingDirectory $spotifyDirectory -FilePath $spotifyExecutable } -Write-Host ($lang).InstallComplete`n -ForegroundColor Green \ No newline at end of file +Write-Host ($lang).InstallComplete`n -ForegroundColor Green