Skip to content

Commit

Permalink
Fix dropping "decodedUrl"
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmaehl committed Apr 21, 2024
1 parent db1228f commit d2c3eeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Includes/_URLModifications.au3
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,8 @@ Func _WinAPI_UrlUnescape($sUrl, $dFlags = 0x00040000)
EndIf

If IsArray($aUrlUnescape) Then
If $aUrlUnescape[2] <> "decodedUrl" Then Return $sURL
Return $aUrlUnescape[2]
If $aUrlUnescape[2] <> "decodedUrl" Then Return $aUrlUnescape[2]
Return $sURL
EndIf

EndFunc ;==>_WinAPI_UrlUnescape

0 comments on commit d2c3eeb

Please sign in to comment.