aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2017-08-28 12:22:54 -0400
committerZoffix Znet <cpan@zoffix.com>2017-08-28 12:23:15 -0400
commit1cb6a9e7e27d13c3383182c047e8b68f9ca36444 (patch)
tree0213c8b245a67181200898ba40becf0993faeb8e
parentfa69fa4d1211a7da011b5f2a5c675fca9be091f8 (diff)
Fix #48 for realz
-rw-r--r--META6.json2
-rw-r--r--lib/IRC/Client.pm62
2 files changed, 2 insertions, 2 deletions
diff --git a/META6.json b/META6.json
index 1461b5b..87b5811 100644
--- a/META6.json
+++ b/META6.json
@@ -2,7 +2,7 @@
"perl" : "6.c",
"name" : "IRC::Client",
"license" : "Artistic-2.0",
- "version" : "3.007002",
+ "version" : "3.007003",
"description" : "Extendable Internet Relay Chat client",
"tags" : [ "Net", "IRC" ],
"depends" : [
diff --git a/lib/IRC/Client.pm6 b/lib/IRC/Client.pm6
index 1bf7235..3658d73 100644
--- a/lib/IRC/Client.pm6
+++ b/lib/IRC/Client.pm6
@@ -48,7 +48,7 @@ submethod BUILD (
my %servers = %$servers;
my %all-conf = :$port, :$password, :$host, :$nick, :$alias,
- :$username, :$userhost, :$userreal, :$channels, :$ssl;
+ :$username, :$userhost, :$userreal, :$channels, :$ssl, :$ca-file;
%servers = '_' => {} unless %servers;
for %servers.keys -> $label {