mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
return count only (fixes #18)
This commit is contained in:
@@ -9,7 +9,7 @@ public class Subscription implements Serializable {
|
||||
private String name;
|
||||
private String message;
|
||||
private String feedUrl;
|
||||
private int unread;
|
||||
private long unread;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
@@ -27,11 +27,11 @@ public class Subscription implements Serializable {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public int getUnread() {
|
||||
public long getUnread() {
|
||||
return unread;
|
||||
}
|
||||
|
||||
public void setUnread(int unread) {
|
||||
public void setUnread(long unread) {
|
||||
this.unread = unread;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user