From bd5e4f3d94606fe1ab40a470c361419df3366685 Mon Sep 17 00:00:00 2001 From: Kukks Date: Wed, 18 Jan 2023 13:47:08 +0100 Subject: [PATCH] fix NRE in plugins list --- BTCPayServer/Views/UIServer/ListPlugins.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Views/UIServer/ListPlugins.cshtml b/BTCPayServer/Views/UIServer/ListPlugins.cshtml index f67d38704..6ef105b6a 100644 --- a/BTCPayServer/Views/UIServer/ListPlugins.cshtml +++ b/BTCPayServer/Views/UIServer/ListPlugins.cshtml @@ -149,7 +149,7 @@

@plugin.Name

- @if (!string.IsNullOrEmpty(downloadInfo.Author)) + @if (!string.IsNullOrEmpty(downloadInfo?.Author)) { by