Removed some unneeded text decoding in the /text operation.

This commit is contained in:
Frank Schmeling 2020-06-19 22:15:50 -07:00
parent 5f0d133580
commit 91f1ee82af

View File

@ -190,10 +190,9 @@ Public Class main
End Try End Try
Case "text" Case "text"
Dim encodedtext As String = req.QueryString("text") Dim text As String = req.QueryString("text")
Dim decodedtext As String = Uri.UnescapeDataString(encodedtext)
Try Try
SendKeysEscaped(decodedtext) SendKeysEscaped(text)
Catch ex As Exception Catch ex As Exception
log(ex.ToString) log(ex.ToString)
End Try End Try