Skip to content

Commit

Permalink
7.8.3 n2o_pi should include init protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
5HT committed Aug 16, 2020
1 parent f4dcd2b commit db625fd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule N2O.Mixfile do
def application, do: [mod: {:n2o, []}, applications: []]
def project do
[ app: :n2o,
version: "7.8.2",
version: "7.8.3",
description: "N2O MQTT TCP WebSocket",
package: package(),
deps: deps()]
Expand Down
2 changes: 1 addition & 1 deletion src/n2o.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application,n2o,
[{description,"N2O MQTT TCP WebSocket"},
{vsn,"7.8.2"},
{vsn,"7.8.3"},
{registered,[]},
{applications,[kernel,stdlib]},
{mod, {n2o, []}}]}.
2 changes: 2 additions & 0 deletions src/n2o_pi.erl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ restart(Tab,Name) ->

handle(Mod,Message,Async) ->
case Mod:proc(Message,Async) of
{ok,S} -> {ok,S};
{ok,S,T} -> {ok,S,T};
{stop,X,Y,S} -> {stop,X,Y,S};
{stop,X,S} -> {stop,X,S};
{reply,X,S,T} -> {reply,X,S,T};
Expand Down

0 comments on commit db625fd

Please sign in to comment.