Warning: count(): Parameter must be an .. Countabl

Hi
I'm getting an error, think it just started today.
The error message is : Warning: count(): Parameter must be an array or an object that implements Countable in ~/includes/library/lib_route.inc.php (Line 229)

That line 229 is :  if (count(language::$languages > 1) && settings::get('seo_links_language_prefix')) {

The full section is :

  // Append language prefix to base
      if (count(language::$languages > 1) && settings::get('seo_links_language_prefix')) {
        if (isset($parsed_link['query']['language'])) unset($parsed_link['query']['language']);
        $http_route_base .= $language_code .'/';
      }

I've only got one language

In Settings, SEO Links Language Prefix is set to False

I'm not sure what to change, if anything. 
I've not made any changes recently.
Anyone got any ideas how to fix ?
Thanks.
tim
I just discovered it days after releasing 2.1.4. This is a compatibility issue with latest PHP 7.2, I'm working on it.

Here is an issue ticket you can follow:
https://github.com/litecart/litecart/issues/139
Many thanks Tim
especially for quick response
I'll watch that ticket
tim
Turns out the syntax contained an error but was not giving an error until PHP 7.2.

count(language::$languages > 1)
 should be

count(language::$languages) > 1
*dough*

Thank you for reporting :)
Excellent Tim, many thanks for your help.
That's fixed it.