diff --git a/public/src/modules/helpers.js b/public/src/modules/helpers.js
index 33cc8a6323..489bece7d6 100644
--- a/public/src/modules/helpers.js
+++ b/public/src/modules/helpers.js
@@ -70,10 +70,10 @@
}
function buildLinkTag(tag) {
- const attributes = ['link', 'rel', 'as', 'type', 'href', 'sizes', 'title'];
- const [link, rel, as, type, href, sizes, title] = attributes.map(attr => (tag[attr] ? `${attr}="${tag[attr]}" ` : ''));
+ const attributes = ['link', 'rel', 'as', 'type', 'href', 'sizes', 'title', 'crossorigin'];
+ const [link, rel, as, type, href, sizes, title, crossorigin] = attributes.map(attr => (tag[attr] ? `${attr}="${tag[attr]}" ` : ''));
- return '\n\t';
+ return '\n\t';
}
function stringify(obj) {