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
 | 
					                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
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user