Jake B.
Well-known member
Not sure if this is intended, but it seems that two of the hexadecimal constants in the Conversation model have the same value.
FETCH_LAST_MESSAGE_AVATAR and FETCH_MESSAGE_SESSION_ACTIVITY both have the same value of 0x01
Code:
const FETCH_LAST_MESSAGE_AVATAR = 0x01;
const FETCH_FIRST_MESSAGE = 0x02;
const FETCH_RECEIVED_BY = 0x04;
const FETCH_MESSAGE_SESSION_ACTIVITY = 0x01;
FETCH_LAST_MESSAGE_AVATAR and FETCH_MESSAGE_SESSION_ACTIVITY both have the same value of 0x01