Skip to content

Commit

Permalink
Fix return
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismccord committed Mar 9, 2022
1 parent 9bfbfc6 commit 3a286c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/phoenix/tracker/shard.ex
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ defmodule Phoenix.Tracker.Shard do
if function_exported?(state.tracker, :handle_info, 2) do
case state.tracker.handle_info(msg, state.tracker_state) do
{:noreply, new_tracker_state} ->
%{state | tracker_state: new_tracker_state}
{:noreply, %{state | tracker_state: new_tracker_state}}

other ->
raise ArgumentError, """
Expand Down

0 comments on commit 3a286c6

Please sign in to comment.