Skip to content

Commit

Permalink
fix normalized wggesucht link (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
probststefan authored Jan 17, 2025
1 parent 8fe7cec commit 3903ab5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/provider/wgGesucht.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ let appliedBlackList = [];

function normalize(o) {
const id = buildHash(o.id, o.price);
return Object.assign(o, {id});
const link = `https://www.wg-gesucht.de${o.link}`;
return Object.assign(o, { id, link });
}

function applyBlacklist(o) {
Expand Down

0 comments on commit 3903ab5

Please sign in to comment.