diff --git a/BTCPayServer/Services/Apps/AppService.cs b/BTCPayServer/Services/Apps/AppService.cs index b040440fa..095084936 100644 --- a/BTCPayServer/Services/Apps/AppService.cs +++ b/BTCPayServer/Services/Apps/AppService.cs @@ -53,7 +53,11 @@ namespace BTCPayServer.Services.Apps public async Task GetAppInfo(string appId) { var app = await GetApp(appId, AppType.Crowdfund, true); - return await GetInfo(app); + if (app != null) + { + return await GetInfo(app); + } + return null; } private async Task GetInfo(AppData appData, string statusMessage = null) {