mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-26 17:05:01 +00:00
Merge branch 'development' into FS-222
This commit is contained in:
commit
8edc87034f
2
.github/workflows/codacy-analysis.yml
vendored
2
.github/workflows/codacy-analysis.yml
vendored
@ -25,7 +25,7 @@ jobs:
|
|||||||
|
|
||||||
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
|
# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
|
||||||
- name: Run Codacy Analysis CLI
|
- name: Run Codacy Analysis CLI
|
||||||
uses: codacy/codacy-analysis-cli-action@4.0.0
|
uses: codacy/codacy-analysis-cli-action@4.0.2
|
||||||
with:
|
with:
|
||||||
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
|
# Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository
|
||||||
# You can also omit the token and run the tools that support default configurations
|
# You can also omit the token and run the tools that support default configurations
|
||||||
|
@ -337,12 +337,12 @@ public abstract class NanoHTTPD
|
|||||||
*/
|
*/
|
||||||
protected String decodePercent(String str)
|
protected String decodePercent(String str)
|
||||||
{
|
{
|
||||||
String decoded = null;
|
String decoded = str;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
decoded = URLDecoder.decode(str, "UTF8");
|
decoded = URLDecoder.decode(str, "UTF8");
|
||||||
}
|
}
|
||||||
catch (UnsupportedEncodingException ignored)
|
catch (UnsupportedEncodingException | IllegalArgumentException ignored)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
return decoded;
|
return decoded;
|
||||||
|
Loading…
Reference in New Issue
Block a user