You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lib: cockpit: drop old Mozilla window.location.hash hack
Firefox used to give a different value depending on the location hash
when using `window.location.hash` and `window.location.href` with for
example `#abc%21abc`. This is now fixed and in all browsers the
following is always true:
window.location.hash.slice(1) == window.location.href.split('#')[1]
Which proves this is now fixed in Firefox.
0 commit comments