Removed some unneeded text decoding in the /text operation.
This commit is contained in:
parent
5f0d133580
commit
91f1ee82af
@ -190,10 +190,9 @@ Public Class main
|
||||
End Try
|
||||
|
||||
Case "text"
|
||||
Dim encodedtext As String = req.QueryString("text")
|
||||
Dim decodedtext As String = Uri.UnescapeDataString(encodedtext)
|
||||
Dim text As String = req.QueryString("text")
|
||||
Try
|
||||
SendKeysEscaped(decodedtext)
|
||||
SendKeysEscaped(text)
|
||||
Catch ex As Exception
|
||||
log(ex.ToString)
|
||||
End Try
|
||||
|
Loading…
x
Reference in New Issue
Block a user