Skip to content

Commit

Permalink
rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
domlander committed Jul 8, 2024
1 parent e0cfa47 commit be921e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/src/javascripts/projects/common/modules/audio/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ class AudioContainer extends Component {
}

render() {
const acastEnabled = config.get('switches.acast');
const isAcastEnabled = config.get('switches.acast');
const isPodcast = config.get('page.isPodcast');
const sourceUrl =
acastEnabled && isPodcast && this.state.acastConsent
isAcastEnabled && isPodcast && this.state.acastConsent
? this.props.source.replace(
'https://',
'https://flex.acast.com/',
Expand Down

0 comments on commit be921e0

Please sign in to comment.