mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-15 14:12:27 +00:00
Fix level text limits (#318)
This commit is contained in:
parent
96ed3cfad2
commit
d0f5d07194
1 changed files with 2 additions and 2 deletions
|
@ -86,9 +86,9 @@ public class PublishController : ControllerBase
|
|||
|
||||
if (slot.Location == null) return this.BadRequest();
|
||||
|
||||
if (slot.Description.Length > 200) return this.BadRequest();
|
||||
if (slot.Description.Length > 500) return this.BadRequest();
|
||||
|
||||
if (slot.Name.Length > 100) return this.BadRequest();
|
||||
if (slot.Name.Length > 64) return this.BadRequest();
|
||||
|
||||
if (slot.Resources.Any(resource => !FileHelper.ResourceExists(resource)))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue