Skip to content
This repository has been archived by the owner on Feb 23, 2023. It is now read-only.

Commit

Permalink
Change host for the caching api
Browse files Browse the repository at this point in the history
  • Loading branch information
delzear committed Apr 19, 2022
1 parent e5cf4c0 commit 03ceebb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/formulaone_api/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"domain": "formulaone_api",
"version": "0.1.3",
"version": "0.1.4",
"name": "Formula One API",
"documentation": "https://github.com/delzear/hass-formulaoneapi",
"dependencies": [],
Expand Down
2 changes: 1 addition & 1 deletion custom_components/formulaone_api/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def random(self, **kwargs):
return choice(**kwargs)

def _build_url(self, path, **kwargs) -> str:
url = "{protocol}://ergastcache.husky-technologies.com/f1/{path}".format(
url = "{protocol}://ergastcache.mobiusmedia.ca/f1/{path}".format(
protocol="http" if self.secure else "http", path=path.format(**kwargs)
)
return url
Expand Down

0 comments on commit 03ceebb

Please sign in to comment.