Skip to content

Commit

Permalink
Remove the proxy from the gear url
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbrew committed Nov 12, 2023
1 parent 7b8bcad commit 69cce89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion garminexport/garminclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ def get_activity_gear(self, activity_id):
:rtype list
"""
response = self.session.get(
f'https://connect.garmin.com/proxy/gear-service/gear/filterGear?activityId={activity_id}',
f'https://connect.garmin.com/gear-service/gear/filterGear?activityId={activity_id}',
)
if response.status_code == 400:
return None
Expand Down

0 comments on commit 69cce89

Please sign in to comment.