Skip to content
Snippets Groups Projects
Commit 6eb09ab2 authored by Leslie Linden's avatar Leslie Linden
Browse files

Removing time offset hack for 'new' tag

parent 938f1b4f
No related branches found
No related tags found
No related merge requests found
...@@ -196,15 +196,12 @@ void LLInboxFolderViewFolder::computeFreshness() ...@@ -196,15 +196,12 @@ void LLInboxFolderViewFolder::computeFreshness()
if (last_expansion_utc > 0) if (last_expansion_utc > 0)
{ {
const U32 time_offset_for_pdt = 7 * 60 * 60; mFresh = (mCreationDate > last_expansion_utc);
const U32 last_expansion = last_expansion_utc - time_offset_for_pdt;
mFresh = (mCreationDate > last_expansion);
#if DEBUGGING_FRESHNESS #if DEBUGGING_FRESHNESS
if (mFresh) if (mFresh)
{ {
llinfos << "Item is fresh! -- creation " << mCreationDate << ", saved_freshness_date " << last_expansion << llendl; llinfos << "Item is fresh! -- creation " << mCreationDate << ", saved_freshness_date " << last_expansion_utc << llendl;
} }
#endif #endif
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment