fix(crl): correct return for `handle_cast(refresh_config)`

This commit is contained in:
Thales Macedo Garitezi 2022-11-14 15:08:30 -03:00
parent bf6ffe103f
commit 92d80b5e55
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ handle_cast(refresh_config, State0) ->
, http_timeout => HTTPTimeoutMS
, urls => URLs
}),
State;
{noreply, State};
handle_cast(_Cast, State) ->
{noreply, State}.