Fix `Setting.authorized_fetch` not being properly taken into consideration (#26958)

lolsob-rspec
Claire 2023-09-18 09:37:29 +02:00 committed by GitHub
parent 4ffa3c2d1d
commit 685d00e64f
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
module AuthorizedFetchHelper
def authorized_fetch_mode?
ENV.fetch('AUTHORIZED_FETCH') { Setting.authorized_fetch } == 'true' || Rails.configuration.x.limited_federation_mode
ENV.fetch('AUTHORIZED_FETCH') { Setting.authorized_fetch && 'true' } == 'true' || Rails.configuration.x.limited_federation_mode
end
def authorized_fetch_overridden?