diff --git a/src/slices/eventDetailsSlice.ts b/src/slices/eventDetailsSlice.ts index 5175ea11c3..e8dfb3af44 100644 --- a/src/slices/eventDetailsSlice.ts +++ b/src/slices/eventDetailsSlice.ts @@ -860,7 +860,7 @@ export const fetchAccessPolicies = createAppAsyncThunk('eventDetails/fetchAccess return policies; } - const json = JSON.parse(accessPolicies.episode_access.acl).acl.ace; + const json = JSON.parse(accessPolicies.episode_access.acl).acl?.ace; if (json === undefined) { return policies; }