Skip to content

Commit

Permalink
Fix house numbers text for no house numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Jey-Cee committed Nov 19, 2024
1 parent bbc27a8 commit af653c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/source/api-abfallio.js
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ class SourceApiAbfallIo extends BaseSource {
name: option.textContent.trim(),
}))
.filter((option) => option.id !== '0');
return houseNumbers.length > 0 ? houseNumbers : [{ id: '0', name: 'Alle Straßen' }];
return houseNumbers.length > 0 ? houseNumbers : [{ id: '0', name: 'Alle Hausnummern' }];
}

async httpApiGetTypes(provider, cityId, streetId, houseNumber) {
Expand Down

0 comments on commit af653c5

Please sign in to comment.