fix page first and last dates when the page contains only status messages

cusax-fix
Yana Stamcheva 19 years ago
parent 6f6d022ff8
commit b689a28cd6

@ -925,7 +925,7 @@ public Date getPageFirstMsgTimestamp()
}
if(firstMessageElement == null)
return null;
return new Date(Long.MAX_VALUE);
String dateString = (String)firstMessageElement
.getAttributes().getAttribute("date");
@ -957,7 +957,7 @@ public Date getPageLastMsgTimestamp()
}
if(lastMessageElement == null)
return null;
return new Date(0);
String dateString = (String) lastMessageElement
.getAttributes().getAttribute("date");

Loading…
Cancel
Save