mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-06 11:58:38 +00:00
Fix admin slot deletion (quite possibly the dumbest fucking bug in existence)
This commit is contained in:
parent
626fffa5e0
commit
fb4d29eb43
1 changed files with 0 additions and 3 deletions
|
@ -1,5 +1,4 @@
|
||||||
#nullable enable
|
#nullable enable
|
||||||
using System;
|
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using LBPUnion.ProjectLighthouse.Types;
|
using LBPUnion.ProjectLighthouse.Types;
|
||||||
using LBPUnion.ProjectLighthouse.Types.Levels;
|
using LBPUnion.ProjectLighthouse.Types.Levels;
|
||||||
|
@ -60,8 +59,6 @@ public class AdminSlotController : ControllerBase
|
||||||
Slot? slot = await this.database.Slots.FirstOrDefaultAsync(s => s.SlotId == id);
|
Slot? slot = await this.database.Slots.FirstOrDefaultAsync(s => s.SlotId == id);
|
||||||
if (slot == null) return this.Ok();
|
if (slot == null) return this.Ok();
|
||||||
|
|
||||||
if (slot.Location == null) throw new ArgumentNullException();
|
|
||||||
|
|
||||||
await this.database.RemoveSlot(slot);
|
await this.database.RemoveSlot(slot);
|
||||||
|
|
||||||
return this.Ok();
|
return this.Ok();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue