summaryrefslogtreecommitdiff
path: root/app/controllers/concerns/issues_calendar.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/concerns/issues_calendar.rb')
-rw-r--r--app/controllers/concerns/issues_calendar.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/controllers/concerns/issues_calendar.rb b/app/controllers/concerns/issues_calendar.rb
index 51d6d3cf05a..692ac5e700b 100644
--- a/app/controllers/concerns/issues_calendar.rb
+++ b/app/controllers/concerns/issues_calendar.rb
@@ -16,9 +16,7 @@ module IssuesCalendar
# the content as a file (even ignoring the Content-Disposition
# header). We want to display the content inline when accessed
# from GitLab, similarly to the RSS feed.
- if request.referer&.start_with?(::Settings.gitlab.base_url)
- response.headers['Content-Type'] = 'text/plain'
- end
+ response.headers['Content-Type'] = 'text/plain' if request.referer&.start_with?(::Settings.gitlab.base_url)
end
end
end