first steps to indienotes
This commit is contained in:
parent
2267e54cd4
commit
69c5c270ad
3 changed files with 24 additions and 4 deletions
|
@ -76,7 +76,7 @@ Pond.prototype.reload = function(callback) {
|
|||
|
||||
Pond.prototype.getUnreadFeeds = function(callback, skip) {
|
||||
var options = {
|
||||
status: "unread",
|
||||
status: "all",
|
||||
limit: 100
|
||||
};
|
||||
|
||||
|
@ -134,6 +134,8 @@ Pond.prototype.normalizeArticle = function(article) {
|
|||
|
||||
var timestamp = new Date(article.published_at).getTime() / 1000;
|
||||
|
||||
console.log(article.read)
|
||||
|
||||
return {
|
||||
id: article.id,
|
||||
guid_hash: article.url + article.id,
|
||||
|
|
Reference in a new issue