mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-24 17:29:28 +01:00
Fix resending authorization problem
This commit is contained in:
parent
8e8a1a3bf5
commit
414004eae4
@ -604,7 +604,7 @@ in_state_change(to, in, subscribed) -> none;
|
|||||||
in_state_change(to, in, unsubscribe) -> {to, none};
|
in_state_change(to, in, unsubscribe) -> {to, none};
|
||||||
in_state_change(to, in, unsubscribed) -> {none, in};
|
in_state_change(to, in, unsubscribed) -> {none, in};
|
||||||
in_state_change(from, none, subscribe) -> none;
|
in_state_change(from, none, subscribe) -> none;
|
||||||
in_state_change(from, none, subscribed) -> none;
|
in_state_change(from, none, subscribed) -> {both, none};
|
||||||
in_state_change(from, none, unsubscribe) -> {none, none};
|
in_state_change(from, none, unsubscribe) -> {none, none};
|
||||||
in_state_change(from, none, unsubscribed) -> none;
|
in_state_change(from, none, unsubscribed) -> none;
|
||||||
in_state_change(from, out, subscribe) -> none;
|
in_state_change(from, out, subscribe) -> none;
|
||||||
@ -633,7 +633,7 @@ out_state_change(none, both, subscribed) -> {from, out};
|
|||||||
out_state_change(none, both, unsubscribe) -> {none, in};
|
out_state_change(none, both, unsubscribe) -> {none, in};
|
||||||
out_state_change(none, both, unsubscribed) -> {none, out};
|
out_state_change(none, both, unsubscribed) -> {none, out};
|
||||||
out_state_change(to, none, subscribe) -> none;
|
out_state_change(to, none, subscribe) -> none;
|
||||||
out_state_change(to, none, subscribed) -> none;
|
out_state_change(to, none, subscribed) -> {both, none};
|
||||||
out_state_change(to, none, unsubscribe) -> {none, none};
|
out_state_change(to, none, unsubscribe) -> {none, none};
|
||||||
out_state_change(to, none, unsubscribed) -> none;
|
out_state_change(to, none, unsubscribed) -> none;
|
||||||
out_state_change(to, in, subscribe) -> none;
|
out_state_change(to, in, subscribe) -> none;
|
||||||
|
@ -666,7 +666,7 @@ in_state_change(to, in, subscribed) -> none;
|
|||||||
in_state_change(to, in, unsubscribe) -> {to, none};
|
in_state_change(to, in, unsubscribe) -> {to, none};
|
||||||
in_state_change(to, in, unsubscribed) -> {none, in};
|
in_state_change(to, in, unsubscribed) -> {none, in};
|
||||||
in_state_change(from, none, subscribe) -> none;
|
in_state_change(from, none, subscribe) -> none;
|
||||||
in_state_change(from, none, subscribed) -> none;
|
in_state_change(from, none, subscribed) -> {both, none};
|
||||||
in_state_change(from, none, unsubscribe) -> {none, none};
|
in_state_change(from, none, unsubscribe) -> {none, none};
|
||||||
in_state_change(from, none, unsubscribed) -> none;
|
in_state_change(from, none, unsubscribed) -> none;
|
||||||
in_state_change(from, out, subscribe) -> none;
|
in_state_change(from, out, subscribe) -> none;
|
||||||
@ -695,7 +695,7 @@ out_state_change(none, both, subscribed) -> {from, out};
|
|||||||
out_state_change(none, both, unsubscribe) -> {none, in};
|
out_state_change(none, both, unsubscribe) -> {none, in};
|
||||||
out_state_change(none, both, unsubscribed) -> {none, out};
|
out_state_change(none, both, unsubscribed) -> {none, out};
|
||||||
out_state_change(to, none, subscribe) -> none;
|
out_state_change(to, none, subscribe) -> none;
|
||||||
out_state_change(to, none, subscribed) -> none;
|
out_state_change(to, none, subscribed) -> {both, none};
|
||||||
out_state_change(to, none, unsubscribe) -> {none, none};
|
out_state_change(to, none, unsubscribe) -> {none, none};
|
||||||
out_state_change(to, none, unsubscribed) -> none;
|
out_state_change(to, none, unsubscribed) -> none;
|
||||||
out_state_change(to, in, subscribe) -> none;
|
out_state_change(to, in, subscribe) -> none;
|
||||||
|
Loading…
Reference in New Issue
Block a user