Updated place resolve module to use new HTTP module.

This commit is contained in:
DebaucheryLibrarian 2020-11-23 00:30:20 +01:00
parent d4c5da2a76
commit ca7c8f0afd
1 changed files with 6 additions and 2 deletions

View File

@ -11,8 +11,12 @@ async function resolvePlace(query) {
try {
// https://operations.osmfoundation.org/policies/nominatim/
const res = await http.get(`https://nominatim.openstreetmap.org/search/${encodeURI(query)}?format=json&accept-language=en&addressdetails=1`, {
'User-Agent': 'contact at moonloop.adult@protonmail.com',
}, { queueMethod: '1s' });
headers: {
'User-Agent': 'contact at moonloop.adult@protonmail.com',
},
interval: 1000,
concurrency: 1,
});
const [item] = res.body;