diff options
author | href <href@random.sh> | 2021-09-01 10:30:18 +0200 |
---|---|---|
committer | href <href@random.sh> | 2021-09-01 10:30:18 +0200 |
commit | 75687711f35355bc30e4829439384aab28fcac6d (patch) | |
tree | 8f3256f472893c39720a684d390e890a152f7303 /lib/lsg/application.ex | |
parent | link: post_* callbacks; html & pdftitle. (diff) |
Commit all the changes that hasn't been committed + updates.
Diffstat (limited to 'lib/lsg/application.ex')
-rw-r--r-- | lib/lsg/application.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lsg/application.ex b/lib/lsg/application.ex index a12253b..3e5fb41 100644 --- a/lib/lsg/application.ex +++ b/lib/lsg/application.ex @@ -25,7 +25,7 @@ defmodule LSG.Application do # for other strategies and supported options opts = [strategy: :one_for_one, name: LSG.Supervisor] sup = Supervisor.start_link(children, opts) - LSG.IRC.after_start() + spawn_link(fn() -> LSG.IRC.after_start() end) sup end |