Changing data endpoint.

This commit is contained in:
2023-04-15 13:09:48 +02:00
parent 3b4a0e4ffc
commit d44e149026
3 changed files with 11 additions and 8 deletions

View File

@ -10,7 +10,7 @@ export default class Locations {
return storageLocation;
}
const response = await fetch(`https://ih-data.midefos.com/api/town/${name}`);
const response = await fetch(`https://main.midefos.com/api/town/${name}`);
Log.debug(`Requested location '${name}'`);
const data = await response.json();