mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-26 17:05:01 +00:00
fix httpd log spam (#223)
fix httpd log spam with invalid url encoded strings (lol) Co-authored-by: Paldiu <pawereus@gmail.com> Co-authored-by: Ryan <Wild1145@users.noreply.github.com>
This commit is contained in:
parent
ecc92589e9
commit
68bcabe5c2
@ -337,12 +337,12 @@ public abstract class NanoHTTPD
|
||||
*/
|
||||
protected String decodePercent(String str)
|
||||
{
|
||||
String decoded = null;
|
||||
String decoded = str;
|
||||
try
|
||||
{
|
||||
decoded = URLDecoder.decode(str, "UTF8");
|
||||
}
|
||||
catch (UnsupportedEncodingException ignored)
|
||||
catch (UnsupportedEncodingException | IllegalArgumentException ignored)
|
||||
{
|
||||
}
|
||||
return decoded;
|
||||
|
Loading…
Reference in New Issue
Block a user