Checking for the “newness” of an item will never mark it as known anymore.
[Sone.git] / src / main / java / net / pterodactylus / sone / template / SoneAccessor.java
index 27b4c24..23b2227 100644 (file)
@@ -94,7 +94,7 @@ public class SoneAccessor extends ReflectionAccessor {
                } else if (member.equals("downloading")) {
                        return core.getSoneStatus(sone) == SoneStatus.downloading;
                } else if (member.equals("new")) {
-                       return core.isNewSone(sone.getId(), false);
+                       return core.isNewSone(sone.getId());
                } else if (member.equals("locked")) {
                        return core.isLocked(sone);
                } else if (member.equals("trust")) {