mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-09 05:18:47 +00:00
Fix slotpage not working
This commit is contained in:
parent
8dbd0e63ff
commit
4ebe8a4d31
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ public class SlotPage : BaseLayout
|
||||||
}
|
}
|
||||||
case PrivacyType.Game:
|
case PrivacyType.Game:
|
||||||
{
|
{
|
||||||
if (slot.Creator != this.User) return this.NotFound();
|
if (this.User == null || slot.Creator != this.User) return this.NotFound();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue