Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion states/djo/dictee.mod.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class State(BaseState):
# get dictee data
async def get_results(self):
try:
response = await self.client.get("https://dictee.djoamersfoort.nl/lichtkrant-api/", timeout=5)
response = await self.client.get("https://dictee.djoleden.nl/lichtkrant-api/", timeout=5)
except httpx.RequestError:
return []
return response.json()
Expand Down
2 changes: 1 addition & 1 deletion states/idle/place.mod.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, stdout):
super().__init__(stdout)
self.sio.on("board", self.board)
self.sio.on("color", self.color)
self.sio.connect("https://place.djoamersfoort.nl")
self.sio.connect("https://place.djoleden.nl")

# module check function
async def check(self, _state):
Expand Down