Cannot cast java.util.HashMap

Hi!
I can reproduce this issue. We will investigate the root of this problem
and I will notify you about results.
Regards,
Kate.

привет

спасибо, Катя. буду ждать

have you any news about my problem?

Hi, Amangeldi,

What is the type of Event.color column on your backend? I assume it’s String with value like #FFFFFF. Sure, a it’s hexadecimal number, but Java is not able to automatically convert “#FFFFFF” to Integer as long as its internal format is 0xFFFFFF.

This is the reason why your Events couldn’t be casted. You should change the type of Event.color field to String (according to the type on your backend) and handle conversion to Integer manually: several ways to do it are described on StackOverflow.com.

Regards,
Sergey