ZOHO.CRM.UI.Record.open not working properly

ZOHO.CRM.UI.Record.open not working properly

I have a Zoho CRM Widget and in it I have a block where it will open the blocks Meeting like below 
  1. block.addEventListener("click", () => {
  2.                         ZOHO.CRM.UI.Record.open({
  3.                             Entity: "Events",
  4.                             RecordID: meeting.id
  5.                         }).catch(err => {
  6.                             console.error("Open record failed:", err);
  7.                         });
  8. });
But many times it leads to Internal Server Error


It happens randomly to meetings and after i went back to click the exact block it correctly redirects me to correct Meeting. After which if I click the back button in the screen it is struck in the error that the view doesn't exists





The Main Thing is it works completely fine in case of related tab but my use case is of web tab where this error occurs
Anybody having these issues?