From bf5ae1774166cf82bf10ed07507b815c50dc1f4e Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Mon, 2 Jun 2025 11:34:05 +0800 Subject: [PATCH] :bug: Fix unable to update publishers --- DysonNetwork.Sphere/Publisher/PublisherController.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/DysonNetwork.Sphere/Publisher/PublisherController.cs b/DysonNetwork.Sphere/Publisher/PublisherController.cs index aeb8d44..affa066 100644 --- a/DysonNetwork.Sphere/Publisher/PublisherController.cs +++ b/DysonNetwork.Sphere/Publisher/PublisherController.cs @@ -330,8 +330,6 @@ namespace DysonNetwork.Sphere.Publisher; var publisher = await db.Publishers .Where(p => p.Name == name) - .Include(publisher => publisher.Picture) - .Include(publisher => publisher.Background) .FirstOrDefaultAsync(); if (publisher is null) return NotFound();