Skip to content

Commit db625fd

Browse files
committed
7.8.3 n2o_pi should include init protocol
1 parent f4dcd2b commit db625fd

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule N2O.Mixfile do
44
def application, do: [mod: {:n2o, []}, applications: []]
55
def project do
66
[ app: :n2o,
7-
version: "7.8.2",
7+
version: "7.8.3",
88
description: "N2O MQTT TCP WebSocket",
99
package: package(),
1010
deps: deps()]

src/n2o.app.src

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{application,n2o,
22
[{description,"N2O MQTT TCP WebSocket"},
3-
{vsn,"7.8.2"},
3+
{vsn,"7.8.3"},
44
{registered,[]},
55
{applications,[kernel,stdlib]},
66
{mod, {n2o, []}}]}.

src/n2o_pi.erl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ restart(Tab,Name) ->
4040

4141
handle(Mod,Message,Async) ->
4242
case Mod:proc(Message,Async) of
43+
{ok,S} -> {ok,S};
44+
{ok,S,T} -> {ok,S,T};
4345
{stop,X,Y,S} -> {stop,X,Y,S};
4446
{stop,X,S} -> {stop,X,S};
4547
{reply,X,S,T} -> {reply,X,S,T};

0 commit comments

Comments
 (0)