Skip to content

Commit

Permalink
ENGCOM-8093: Fix for wildcard section reload being broken by section-…
Browse files Browse the repository at this point in the history
…config refacor #29081
  • Loading branch information
gabrieldagama authored Sep 22, 2020
2 parents c9a4107 + f0d0840 commit 47c6705
Show file tree
Hide file tree
Showing 4 changed files with 377 additions and 62 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ define([
var parameters;

sectionNames = sectionConfig.filterClientSideSections(sectionNames);
parameters = _.isArray(sectionNames) ? {
parameters = _.isArray(sectionNames) && sectionNames.indexOf('*') < 0 ? {
sections: sectionNames.join(',')
} : [];
parameters['force_new_section_timestamp'] = forceNewSectionTimestamp;
Expand Down
Loading

0 comments on commit 47c6705

Please sign in to comment.