diff --git a/src/Umbraco.Web.Common/AspNetCore/AspNetCoreSessionManager.cs b/src/Umbraco.Web.Common/AspNetCore/AspNetCoreSessionManager.cs
index 1813c75932..ad5f480a72 100644
--- a/src/Umbraco.Web.Common/AspNetCore/AspNetCoreSessionManager.cs
+++ b/src/Umbraco.Web.Common/AspNetCore/AspNetCoreSessionManager.cs
@@ -27,7 +27,7 @@ internal class AspNetCoreSessionManager : ISessionIdResolver, ISessionManager
///
/// If session isn't enabled this will throw an exception so we check
///
- private bool IsSessionsAvailable => !(_httpContextAccessor.HttpContext?.Features.Get() is null);
+ private bool IsSessionsAvailable => !(_httpContextAccessor.HttpContext?.Features.Get()?.Session is null);
public string? GetSessionValue(string key)
{