Plugin Frisquet-connect - erreur sur la fonction cron5... avec DEBIAN12

Bonjour @anto35 ,

Suite à l’installation du plugin en version bêta, je signale cette erreur dans les logs du plugin qui ne concernent que les installations sur Debian12

0009|[2025-11-07 13:50:06] ERROR  : Erreur sur la fonction cron5 du plugin : Unsupported operand types: string - string
0010|[2025-11-07 13:55:05] ERROR  : Erreur sur la fonction cron5 du plugin : Unsupported operand types: string - string
0011|[2025-11-07 14:00:09] ERROR  : Erreur sur la fonction cron5 du plugin : Unsupported operand types: string - string
0012|[2025-11-07 14:05:05] ERROR  : Erreur sur la fonction cron5 du plugin : Unsupported operand types: string - string
0013|[2025-11-07 14:10:08] ERROR  : Erreur sur la fonction cron5 du plugin : Unsupported operand types: string - string
0014|[2025-11-07 14:15:07] ERROR  : Erreur sur la fonction cron5 du plugin : Unsupported operand types: string - string
0015|[2025-11-07 14:20:06] ERROR  : Erreur sur la fonction cron5 du plugin : Unsupported operand types: string - string
0016|[2025-11-07 14:25:06] ERROR  : Erreur sur la fonction cron5 du plugin : Unsupported operand types: string - string
0017|[2025-11-10 15:05:05] ERROR  : Erreur sur la fonction cron5 du plugin : Unsupported operand types: string - string
0018|[2025-11-10 15:15:06] ERROR  : Erreur sur la fonction cron5 du plugin : Unsupported operand types: string - string

A noter que cela n’empêche pas la remontée des informations (temp consignes, extérieure…)
Une correction pour php8 est-elle possible ?

log http.error :

PHP Fatal error:  Uncaught TypeError: Unsupported operand types: string - string in /var/www/html/vendor/symfony/expression-language/Node/BinaryNode.php:149

Ligne 149 : return $left - $right;

Après recherche, je pense que le soucis vient du calcul de la consommation chauffage puisque je ne vois que dans ces 3 lignes là (571 - 582 - 595) du fichier frisquet.class.php qu’il y a une soustraction :

$cmd->setConfiguration('calcul', "maxbetween(#$baseId#,first day of last month 00:00:00,first day of this month 00:00:00)-minbetween(#$baseId#,first day of last month 00:00:00,first day of this month 00:00:00)");
         $cmd->setConfiguration('calcul', "maxbetween(#$baseId#,today 00:00:00,now)-minbetween(#$baseId#,today 00:00:00,now)");
         $cmd->setConfiguration('calcul', "maxbetween(#$baseId#,yesterday 00:00:00,today 00:00:00)-minbetween(#$baseId#,yesterday 00:00:00, today 00:00:00)");
         

Du coup quelles modifs à faire pour compatibilité php8 ?