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() })