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: hotfix to solve cookie issues #819

Merged
merged 1 commit into from
Apr 17, 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
2 changes: 2 additions & 0 deletions openedx/core/djangoapps/lang_pref/middleware.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ def process_response(self, request, response): # lint-amnesty, pylint: disable=

# DarkLangMiddleware has already set this cookie
if DarkLangConfig.current().enabled and get_user_preference(current_user, DARK_LANGUAGE_KEY):
new_lang = get_user_preference(current_user, DARK_LANGUAGE_KEY)
lang_pref_helpers.set_language_cookie(request, response, new_lang)
return response

anonymous_cookie_lang = getattr(request, '_anonymous_user_cookie_lang', None)
Expand Down
Loading