Skip to content

Commit

Permalink
Fix auth token not being printed on startup (#2655)
Browse files Browse the repository at this point in the history
  • Loading branch information
jyc committed Jun 15, 2024
1 parent 8556a17 commit 0c9add2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/livebook_web/endpoint.ex
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ defmodule LivebookWeb.Endpoint do
base = update_in(base.path, &(&1 || "/"))

case Livebook.Config.authentication() do
%{mode: token, secret: token} ->
%{mode: :token, secret: token} ->
%{base | query: "token=" <> token}

_ ->
Expand Down

0 comments on commit 0c9add2

Please sign in to comment.