Sanitize spaces when setting URLs without domain
It throws an URISyntaxException otherwise.
Cette révision appartient à :
Parent
040bac3da2
révision
ed80ee98a7
1 fichiers modifiés avec 1 ajouts et 1 suppressions
|
@ -341,7 +341,7 @@ abstract class HttpSource : CatalogueSource {
|
||||||
*/
|
*/
|
||||||
private fun getUrlWithoutDomain(orig: String): String {
|
private fun getUrlWithoutDomain(orig: String): String {
|
||||||
return try {
|
return try {
|
||||||
val uri = URI(orig)
|
val uri = URI(orig.replace(" ", "%20"))
|
||||||
var out = uri.path
|
var out = uri.path
|
||||||
if (uri.query != null) {
|
if (uri.query != null) {
|
||||||
out += "?" + uri.query
|
out += "?" + uri.query
|
||||||
|
|
Référencer dans un nouveau ticket