MAINT-3448 FIX: Timestamps disappear from conversation log after viewer restart

master
Richard Linden 2014-02-26 11:58:37 -08:00
parent 80b4a4a1f5
commit ccc15df25f
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ struct ConversationParams : public LLInitParam::Block<ConversationParams>
LLConversation::LLConversation(const ConversationParams& params)
: mTime(params.time),
mTimestamp(params.timestamp),
mTimestamp(params.timestamp.isProvided() ? params.timestamp : createTimestamp(params.time)),
mConversationType(params.conversation_type),
mConversationName(params.conversation_name),
mHistoryFileName(params.history_filename),