Skip to content

Commit 1bf6305

Browse files
committed
style(ContentSecurityPolicyHeaderWriter): remove an extra space.
1 parent ef6818b commit 1bf6305

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ru/mystamps/web/support/spring/security/ContentSecurityPolicyHeaderWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ protected String constructDirectives(String uri) {
174174

175175
sb.append(DEFAULT_SRC).append(SEPARATOR)
176176
.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)
177+
.append(FONT_SRC).append(useCdn ? FONT_SRC_CDN : FONT_SRC_SELF).append(SEPARATOR)
178178
.append(REPORT_URI).append(host).append(SiteUrl.CSP_REPORTS_HANDLER).append(SEPARATOR)
179179
.append(STYLE_SRC).append(useSingleHost ? STYLES_SELF : STYLES_ALT);
180180

0 commit comments

Comments
 (0)