Skip to content

Commit ada8bf0

Browse files
committed
[feedback] x-frame-options header removed.
- x-frame-options header removed from iframe serve endpoint.
1 parent 343c41a commit ada8bf0

File tree

1 file changed

+1
-1
lines changed
  • plugins/star-rating/frontend

1 file changed

+1
-1
lines changed

plugins/star-rating/frontend/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var plugin = {};
22
(function (plugin) {
33
plugin.init = function(app, countlyDb) {
44
app.get(countlyConfig.path+'/feedback', function (req, res, next) {
5-
res.setHeader('X-Frame-Options','ALLOW-FROM *');
5+
res.removeHeader('X-Frame-Options');
66
res.render('../../../plugins/star-rating/frontend/public/templates/feedback-popup', {});
77
});
88
};

0 commit comments

Comments
 (0)