chore(deps): update module github.com/coreos/go-oidc to v3 - autoclosed #17

Closed
renovate-bot wants to merge 55 commits from renovate/github.com-coreos-go-oidc-3.x into master
Showing only changes of commit 9a19f3a945 - Show all commits

View File

@ -40,9 +40,9 @@
const my_correction = { };
for (const tpl of templates) {
if (!tpl.regexp) continue;
if (!tpl.regexp && tpl.label) continue;
if (r.value.match(tpl.regexp)) {
if (tpl.regexp && r.value.match(tpl.regexp)) {
my_correction[tpl.id] = true;
} else {
my_correction[tpl.id] = false;