Skip to content

Commit

Permalink
Restore beta channel detection
Browse files Browse the repository at this point in the history
  • Loading branch information
jgmize committed Jun 29, 2019
1 parent ecba6fb commit cabdd15
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bedrock/firefox/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,6 +401,8 @@ def detect_channel(version):
return 'nightly'
if version.endswith('a2'):
return 'alpha'
if version.endswith('beta'):
return 'beta'

return 'unknown'

Expand Down

0 comments on commit cabdd15

Please sign in to comment.