Commit 696570ff by Tuomas Riihimäki

Calculate seen time correctly...

1 parent 1e15a5e0
...@@ -184,22 +184,6 @@ public class ReaderEvent extends GenericEntity { ...@@ -184,22 +184,6 @@ public class ReaderEvent extends GenericEntity {
@Transient @Transient
public String getSeenSince() { public String getSeenSince() {
return "" + ((getUpdatetime().getTime() / 1000) / 60) +" min." ; return "" + ((System.currentTimeMillis() - getUpdatetime().getTime()) / 1000 / 60) + " min.";
} }
} }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!