Skip to content

Commit

Permalink
Merge pull request #14 from voxter/3.18-feature-ami-blackhole
Browse files Browse the repository at this point in the history
Hotfix incorrect module name in comm login (#12)
  • Loading branch information
danielfinke committed Mar 11, 2015
2 parents a73ac93 + 6d4572e commit 97aa9b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion applications/amimulator/src/amimulator_comm.erl
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ handle_cast(accept, #state{listen_socket=Socket}=State) ->
{noreply, State}
end;
handle_cast({login, AccountId}, State) ->
{ok, OriginatorPid} = blackhole_ami_originator:start_link(),
{ok, OriginatorPid} = amimulator_originator:start_link(),
{noreply, State#state{account_id=AccountId,originator_pid=OriginatorPid}};
handle_cast({originator, Action, Props}, #state{originator_pid=OriginatorPid}=State) ->
gen_listener:cast(OriginatorPid, {Action, Props}),
Expand Down

0 comments on commit 97aa9b2

Please sign in to comment.