Skip to content

Commit

Permalink
Fix episodes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kookster committed Dec 12, 2024
1 parent 0449918 commit 3676a78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/models/megaphone/publisher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def check_status_episodes!
episodes = private_feed.episodes.unfinished(:megaphone)
timeout_at = Time.now.utc + WAIT_TIMEOUT

while episode.size > 0 && Time.now.utc < timeout_at
while episodes.size > 0 && Time.now.utc < timeout_at
sleep(wait_interval)
episodes = check_episodes(episodes)
end
Expand Down

0 comments on commit 3676a78

Please sign in to comment.