Skip to content

Commit

Permalink
Merge pull request #809 from gernot-h/fix-oauth-view
Browse files Browse the repository at this point in the history
fix: missing step 1 in config_connect()
  • Loading branch information
flobz committed Mar 9, 2024
2 parents 4e4db24 + 4e48aeb commit 192e2d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psa_car_controller/web/view/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def display_page(pathname, search):
elif pathname == "/config_login":
page = config_layout("login")
elif pathname == "/config_connect":
page = get_oauth_config_layout(query_params["url"])
page = get_oauth_config_layout(query_params["url"][0])
elif pathname == "/log":
page = log_layout()
elif not APP.is_good:
Expand Down

0 comments on commit 192e2d6

Please sign in to comment.