Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platform/resources/iPhonePackageApp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ local function generateXcent( options )
print("beta_reports_active_setting: ".. tostring(beta_reports_active_setting))
end

if beta_reports_active_setting ~= "" then
if beta_reports_active_setting ~= "" and options.settings.iphone.betaReportsEnabled == true then
-- set the value appropriately
if nil ~= string.find( beta_reports_active_setting, "1", 1, true ) then
templateBetaReportsActive, numMatches = string.gsub( templateBetaReportsActive, "{{BETA_REPORTS}}", "true" )
Expand Down
2 changes: 1 addition & 1 deletion platform/resources/tvosPackageApp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ local function generateXcent( options )
print("beta_reports_active_setting: ".. tostring(beta_reports_active_setting))
end

if beta_reports_active_setting ~= "" then
if beta_reports_active_setting ~= "" and options.settings.tvos.betaReportsEnabled == true then
-- set the value appropriately
if nil ~= string.find( beta_reports_active_setting, "1", 1, true ) then
templateBetaReportsActive, numMatches = string.gsub( templateBetaReportsActive, "{{BETA_REPORTS}}", "true" )
Expand Down
Loading