Merge pull request #367 from MMetze/patch-1

Update _index.en.md
This commit is contained in:
RustDesk 2024-03-22 14:42:37 +08:00 committed by GitHub
commit 4530ae1298
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -67,12 +67,10 @@ function getLatest()
}
# Create object to return
$Result = New-Object PSObject -Property
@{
Version = $Version
Downloadlink = $Downloadlink
}
$params += @{Version = $Version}
$params += @{Downloadlink = $Downloadlink}
$Result = New-Object PSObject -Property $params
return($Result)
}