From 988d2d4805a8a9f72f441f3dc94e798c5db9cba0 Mon Sep 17 00:00:00 2001 From: Markus Keil Date: Fri, 19 Jul 2024 11:53:22 +0200 Subject: [PATCH] fix yolo --- charts/jitsi/Chart.yaml | 2 +- charts/jitsi/files/oidc-redirect.html | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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}`;