diff --git a/charts/jitsi/Chart.yaml b/charts/jitsi/Chart.yaml index 05d4339..27fa727 100644 --- a/charts/jitsi/Chart.yaml +++ b/charts/jitsi/Chart.yaml @@ -14,7 +14,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. -version: 1.5.0 +version: 1.5.1 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. diff --git a/charts/jitsi/files/oidc-redirect.html b/charts/jitsi/files/oidc-redirect.html index ffbcc41..3c755d5 100644 --- a/charts/jitsi/files/oidc-redirect.html +++ b/charts/jitsi/files/oidc-redirect.html @@ -89,6 +89,7 @@ // A yolo call. Send to JWT gen directly const search = encodeURIComponent(window.location.search.substring(1)); const hash = encodeURIComponent(window.location.hash.substring(1)); + const path = encodeURIComponent(window.location.pathname); window.location = '/oidc/yolo' + `?path=${path}&search=${search}&hash=${hash}`;