We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c993ad1 commit 4cdcee2Copy full SHA for 4cdcee2
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "blinkist-podcast-server",
3
- "version": "1.1.3",
+ "version": "1.1.4",
4
"description": "A Node.js server providing the daily blinks of blinkist.com as an audio podcast",
5
"main": "index.js",
6
"engines": {
src/server.mjs
@@ -30,7 +30,7 @@ export default class Server {
30
const options =
31
!isNaN(page) && page > 0
32
? { page, pageSize: this.feedPageSize }
33
- : {};
+ : { page: 1, pageSize: this.feedPageSize };
34
35
const feedContent = await createFeedAsync(req, language, options);
36
res.set("Content-Type", "application/xml");
0 commit comments