fix normalized wggesucht link (#123)

This commit is contained in:
Stefan
2025-01-17 22:05:34 +01:00
committed by GitHub
parent 8fe7cec2a1
commit 3903ab59cf

View File

@@ -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) {