Function with Search Records was working until a few weeks ago, around when "Connected Records" was released

Function with Search Records was working until a few weeks ago, around when "Connected Records" was released

I have a custom function that has been running for nearly a year now, which suddenly stopped working around the time Zoho released the "Connected Records" update. The function is no longer finding the record using the searchRecords function.  I've changed nothing in our CRM related to this. My API names are correct, etc. As stated, it was working before.  Screenshot of function is attached and I am pasting below.

The function is set to search our "snf_connections" custom module for matching records that include two AccountIDs: "facilityid" and "getpayerid".   The 2 fields it is searching are lookup fields on each record in the "snf_connections" module.  The variable "testconnect"  is the record it should be finding (I added this in today to show a matching record does exist) and the other screenshot is of the details of the record where you can see the API names and AccountIDs match to what is being searched.  It used to find the records but no longer will. What has changed on the Zoho side that is causing this to no longer work and how do I adjust my function??

if(snfconnection.isNull() == true)
{
info getpayerid;  
info facilityid;
testconnect = zoho.crm.getRecordById("snf_connections", 2065972000193985431);
info testconnect;
searchconnect = zoho.crm.searchRecords("snf_connections","((LTC_Services_Payer_Account:equals:"+getpayerid+") AND (SNF:equals:"+facilityid+"))");
info searchconnect;