set Expires=0 for im-iscomposing in order to make sure flexisip doesn't store them

This commit is contained in:
Benjamin Reis 2018-03-05 11:54:44 +01:00
parent d6c17a1683
commit cf5abd62b7

View file

@ -87,6 +87,7 @@ void ChatRoomPrivate::sendIsComposingNotification () {
chatMessage->setToBeStored(false);
chatMessage->addContent(*content);
chatMessage->getPrivate()->addSalCustomHeader(PriorityHeader::HeaderName, PriorityHeader::NonUrgent);
chatMessage->getPrivate()->addSalCustomHeader("Expires", "0");
chatMessage->getPrivate()->send();
}