Roblox's documentation states that a 409 HTTP error for place-publishing should contain the following message: " Place not part of the universe." However, this error also occurs if the place is open in team create (see #37).
Currently, rbxcloud hard-codes the error message to the same message that Roblox has documented. However, this message is misleading in the case of the aforementioned team create scenario.
Roblox's documentation states that a 409 HTTP error for place-publishing should contain the following message:
" Place not part of the universe."
However, this error also occurs if the place is open in team create (see #37).Currently,
rbxcloud
hard-codes the error message to the same message that Roblox has documented. However, this message is misleading in the case of the aforementioned team create scenario.Relevant code: https://github.com/Sleitnick/rbxcloud/blob/main/src/rbx/experience.rs#L91
Questions:
If Roblox's HTTP response already contains a proper error message, that error message should be used instead of hard-coding a new message.