Skip to content

Commit 158e1b0

Browse files
authored
Fix: add to CSP_FRAME_SRC (#2446)
2 parents bd57f55 + 4905621 commit 158e1b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benefits/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ def RUNTIME_ENVIRONMENT():
312312
if RECAPTCHA_ENABLED:
313313
env_frame_src.append("https://www.google.com")
314314
if len(env_frame_src) > 0:
315-
CSP_FRAME_SRC = env_frame_src
315+
CSP_FRAME_SRC.extend(env_frame_src)
316316

317317
CSP_IMG_SRC = [
318318
"'self'",

0 commit comments

Comments
 (0)