We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 768a597 + 77ad601 commit d923d42Copy full SHA for d923d42
internal/web/web.go
@@ -75,6 +75,7 @@ func (web *Web) GetSamlLogin(conf config.SamlConfig) (string, error) {
75
wait()
76
77
saml := strings.Split(page.MustElement(`body`).MustText(), "SAMLResponse=")[1]
78
+ saml = strings.Split(saml, "&")[0]
79
return nurl.QueryUnescape(saml)
80
81
}
@@ -95,7 +96,7 @@ func (web *Web) ClearCache() error {
95
96
return nil
97
98
-//checkRodProcess gets a list running process
99
+// checkRodProcess gets a list running process
100
// kills any hanging rod browser process from any previous improprely closed sessions
101
func checkRodProcess() error {
102
pids := make([]int, 0)
0 commit comments