Fixing typo

This commit is contained in:
rockstardev
2020-07-30 20:43:44 -05:00
parent dc3c130162
commit 1b3e40fd70
8 changed files with 9 additions and 8 deletions

View File

@@ -288,7 +288,7 @@ namespace BTCPayServer.Controllers.GreenField
protected bool CanUseInternalLightning(bool doingAdminThings)
{
return (_btcPayServerEnvironment.IsDevelopping || User.IsInRole(Roles.ServerAdmin) ||
return (_btcPayServerEnvironment.IsDeveloping || User.IsInRole(Roles.ServerAdmin) ||
(_cssThemeManager.AllowLightningInternalNodeForAll && !doingAdminThings));
}