Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change unescape to decodeURI #892

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/pytest_html/scripts/storage.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const hideCategory = (categoryToHide) => {
const settings = [...new Set(currentVisible)].filter((f) => f !== categoryToHide).join(',')

url.searchParams.set('visible', settings)
window.history.pushState({}, null, unescape(url.href))
window.history.pushState({}, null, decodeURI(url.href))
}

const showCategory = (categoryToShow) => {
Expand All @@ -44,7 +44,7 @@ const showCategory = (categoryToShow) => {
const noFilter = possibleFilters.length === settings.length || !settings.length

noFilter ? url.searchParams.delete('visible') : url.searchParams.set('visible', settings.join(','))
window.history.pushState({}, null, unescape(url.href))
window.history.pushState({}, null, decodeURI(url.href))
}

const getSort = (initialSort) => {
Expand All @@ -59,7 +59,7 @@ const getSort = (initialSort) => {
const setSort = (type) => {
const url = new URL(window.location.href)
url.searchParams.set('sort', type)
window.history.pushState({}, null, unescape(url.href))
window.history.pushState({}, null, decodeURI(url.href))
}

const getCollapsedCategory = (renderCollapsed) => {
Expand Down