Skip to content

Commit

Permalink
Default to true for SSL if not specified.
Browse files Browse the repository at this point in the history
  • Loading branch information
LindseyB committed Mar 16, 2013
1 parent 653f2e6 commit 3427ea6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/xombot.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def start
@name = config["name"] || NAME
@server = config["server"] || SERVER
@port = config["port"] || PORT
@ssl = (config["ssl"] == "true")
@ssl = config["ssl"] ? config["ssl"] : true
@channels = config["channels"] || CHANNELS

bot = Cinch::Bot.new do
Expand Down

0 comments on commit 3427ea6

Please sign in to comment.