Skip to content

Commit

Permalink
Du to missing pagination only the latest 20 ads have been shown. This…
Browse files Browse the repository at this point in the history
… fixes issue #16 and lists all available ads in the list.

Version bump to 0.6.5.
  • Loading branch information
Robert Honz committed Jan 26, 2022
1 parent 00f50f4 commit 25a0310
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kleinanzeigen-magic",
"version": "0.6.4",
"version": "0.6.5",
"description": "Speed up your Kleinanzeigen workflows!",
"productName": "Kleinanzeigen Magic",
"author": "Robert Honz <exislow gmail-com>",
Expand Down
2 changes: 1 addition & 1 deletion src-electron/main-process/kleinanzeigen.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export class Kleinanzeigen {
}

async getAds() {
const urlSuffix = `/users/${this._email}/ads.json`;
const urlSuffix = `/users/${this._email}/ads.json?size=9999`;

try {
const content = await this._httpGetJsonContent(urlSuffix);
Expand Down

0 comments on commit 25a0310

Please sign in to comment.