Skip to content

Commit

Permalink
fix: iframe code url generation
Browse files Browse the repository at this point in the history
  • Loading branch information
gion-andri committed Jan 18, 2024
1 parent fd159d0 commit a03bfd5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class IframeCodeGeneratorComponent implements OnInit {
params.push('regions=' + this.selectedRegions.join(','));
}
if (this.selectedGenres.length > 0) {
params.push('genres=' + this.selectedRegions.join(','));
params.push('genres=' + this.selectedGenres.join(','));
}
if (this.searchTerm != '') {
params.push('searchTerm=' + encodeURI(this.searchTerm));
Expand Down

0 comments on commit a03bfd5

Please sign in to comment.