Skip to content

Commit

Permalink
roblox/bootstrapper: check for live channel for cdn
Browse files Browse the repository at this point in the history
  • Loading branch information
apprehensions committed Oct 23, 2023
1 parent 1b92739 commit 4c30631
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion roblox/bootstrapper/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ func channelPath(channel string) string {
// ClientSettings it will be lowercased, but not on the deploy mirror.
channel = strings.ToLower(channel)

if channel == "" {
// Roblox CDN only accepts no channel if its live
if channel == "" || channel == "live" {
return "/"
}

Expand Down

0 comments on commit 4c30631

Please sign in to comment.