Fix Bug for encoding URI (#4207)

Encoded URI:
http%3A%2F%2F127.0.0.1%3A8001%2F

Decoded URI:
http://127.0.0.1:8001/
pull/4208/head
Mahmoud 2022-01-21 20:35:31 +02:00 committed by GitHub
parent 0c983d5623
commit 0b6c1339ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ class SidebarSearch {
}
const groupItemElement = $('<a/>', {
href: link,
href: decodeURIComponent(link),
class: 'list-group-item'
})
const searchTitleElement = $('<div/>', {