Fixed generate_rss.go only using even numbers for ids

This commit is contained in:
gmemstr 2017-11-28 08:47:14 -08:00
parent f19345d3d0
commit 5df153fc3b

View file

@ -120,8 +120,8 @@ func GenerateRss() {
Created: date, Created: date,
}, },
) )
}
i = i + 1; i = i + 1;
}
} }
// Translate the feed to both RSS and JSON, // Translate the feed to both RSS and JSON,