From b5158721a83b5ddf923ecb2014b27564f473f9a9 Mon Sep 17 00:00:00 2001 From: xiaolipro <2357729423@qq.com> Date: Mon, 28 Jul 2025 09:17:31 +0800 Subject: [PATCH] =?UTF-8?q?rem=EF=BC=9A=E6=9A=82=E6=97=B6=E7=A7=BB?= =?UTF-8?q?=E9=99=A4oss?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/InterfaceForward.Application/Services/App/AppsService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/InterfaceForward.Application/Services/App/AppsService.cs b/src/InterfaceForward.Application/Services/App/AppsService.cs index a3ab32d..406862b 100644 --- a/src/InterfaceForward.Application/Services/App/AppsService.cs +++ b/src/InterfaceForward.Application/Services/App/AppsService.cs @@ -136,7 +136,7 @@ public class AppsService : ApplicationService .SingleAsync(x => x.Id == id); _ = res ?? throw new BusinessException(message:"在指定的编号下找不到数据"); - if (res.LogoKey != null) res.LogoUrl = OSSHelper.GetUrlByKey(res.LogoKey); + // if (res.LogoKey != null) res.LogoUrl = OSSHelper.GetUrlByKey(res.LogoKey); res.AppScope = await _appScopeRepository.AsQueryable() .Where(x => x.AppId == id) .Select(x => new AppScopeOutput { Id = x.Id.SelectAll() })