Reply to thread

Not sure if this is intended, but it seems that two of the hexadecimal constants in the Conversation model have the same value.


[code]

const FETCH_LAST_MESSAGE_AVATAR = 0x01;

const FETCH_FIRST_MESSAGE = 0x02;

const FETCH_RECEIVED_BY = 0x04;


const FETCH_MESSAGE_SESSION_ACTIVITY = 0x01;

[/code]


FETCH_LAST_MESSAGE_AVATAR and FETCH_MESSAGE_SESSION_ACTIVITY both have the same value of 0x01


Back
Top Bottom