remove the extra escape from email pattern when reserving a share

This commit is contained in:
Kenneth Bingham 2024-06-04 09:00:20 -04:00
parent b22bc9fb75
commit ecf2fe5bfb
No known key found for this signature in database
GPG Key ID: 31709281860130B6

View File

@ -133,7 +133,7 @@ if [[ -n "${ZROK_OAUTH_PROVIDER:-}" ]]; then
ZROK_CMD+=" --oauth-provider ${ZROK_OAUTH_PROVIDER}"
if [[ -n "${ZROK_OAUTH_EMAILS:-}" ]]; then
for EMAIL in ${ZROK_OAUTH_EMAILS}; do
ZROK_CMD+=" --oauth-email-address-patterns '${EMAIL}'"
ZROK_CMD+=" --oauth-email-address-patterns ${EMAIL}"
done
fi
elif [[ -n "${ZROK_BASIC_AUTH:-}" ]]; then