Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: resolve issue #597 #599

Merged
merged 3 commits into from
Jan 16, 2024
Merged
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
9 changes: 7 additions & 2 deletions run_page/generator/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,18 @@ def update_or_create_activity(session, run_activity):
if not location_country and start_point or location_country == "China":
try:
location_country = str(
g.reverse(f"{start_point.lat}, {start_point.lon}")
g.reverse(
f"{start_point.lat}, {start_point.lon}", language="zh-CN"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you may also do this in the except block below

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

)
)
# limit (only for the first time)
except Exception as e:
try:
location_country = str(
g.reverse(f"{start_point.lat}, {start_point.lon}")
g.reverse(
f"{start_point.lat}, {start_point.lon}",
language="zh-CN",
)
)
except Exception as e:
pass
Expand Down