Use rawurlencode instead of urlencode to sanatize URL-unsafe characters returned by the info providers.

This commit is contained in:
Jan Böhmer 2024-02-24 23:58:27 +01:00
parent 12e9497ccf
commit a5d184baef
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@ class FileDTOTest extends TestCase
//Remaining URL unsafe characters must be escaped
["test%5Ese", "test^se"],
["test+se", "test se"],
["test%20se", "test se"],
["test%7Cse", "test|se"],
];
}