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.
1 parent ef6818b commit 1bf6305Copy full SHA for 1bf6305
src/main/java/ru/mystamps/web/support/spring/security/ContentSecurityPolicyHeaderWriter.java
@@ -174,7 +174,7 @@ protected String constructDirectives(String uri) {
174
175
sb.append(DEFAULT_SRC).append(SEPARATOR)
176
.append(IMG_SRC).append(useSingleHost ? IMG_SRC_SELF : IMG_SRC_ALT).append(SEPARATOR)
177
- .append(FONT_SRC).append(useCdn ? FONT_SRC_CDN : FONT_SRC_SELF).append(SEPARATOR)
+ .append(FONT_SRC).append(useCdn ? FONT_SRC_CDN : FONT_SRC_SELF).append(SEPARATOR)
178
.append(REPORT_URI).append(host).append(SiteUrl.CSP_REPORTS_HANDLER).append(SEPARATOR)
179
.append(STYLE_SRC).append(useSingleHost ? STYLES_SELF : STYLES_ALT);
180
0 commit comments