24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-14 22:00:16 +02:00

When unknown roster version, return an acceptable version ID binary (#2709)

This commit is contained in:
Badlop 2018-12-10 20:30:42 +01:00
parent 8295bcebec
commit f2bd2f6e37

View File

@ -231,7 +231,7 @@ roster_version(LServer, LUser) ->
case roster_version_on_db(LServer) of case roster_version_on_db(LServer) of
true -> true ->
case read_roster_version(LUser, LServer) of case read_roster_version(LUser, LServer) of
error -> not_found; error -> <<"not_found">>;
{ok, V} -> V {ok, V} -> V
end; end;
false -> false ->