Update TGBeta.ps1

This commit is contained in:
2025-01-25 18:25:38 -05:00
parent 467c2b9ede
commit 60a6b48308

View File

@@ -1543,14 +1543,14 @@ try {
$responseString = "Task not found."
}
}
}
# Send the response
$buffer = [System.Text.Encoding]::UTF8.GetBytes($responseString)
$response.ContentType = "text/plain"
$response.ContentLength64 = $buffer.Length
$response.OutputStream.Write($buffer, 0, $buffer.Length)
$response.OutputStream.Close()
}