Recording broken after update?

After the last updates i get an error:

Parse error: parse error, unexpected T_BOOLEAN_AND, expecting ‘,’ or ‘)’ in /var/www/html/recordings/modules/callmonitor.module on line 597

Recordings 3.3.5.2
Core 2.3.0.1

Hmmm… appears to be a closing right-hand bracket missing for the if statement…

if (isset($_SESSION['ari_user']['outboundCID'] && (trim($_SESSION['ari_user']['outboundCID']) != '')) {

This is the solution:

if (isset($_SESSION['ari_user']['outboundCID']) && (trim($_SESSION['ari_user']['outboundCID']) != '')) {

Seems to have been magically fixed in the last update…