You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2020/10/24 19:03:36 UTC

[whimsy] branch master updated: oops, got that backwards

This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 9bb2df5  oops, got that backwards
9bb2df5 is described below

commit 9bb2df560247d795240095954eb74e0fb4a948ae
Author: Sam Ruby <ru...@intertwingly.net>
AuthorDate: Sat Oct 24 15:03:20 2020 -0400

    oops, got that backwards
---
 www/board/agenda/daemon/wsc.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/board/agenda/daemon/wsc.rb b/www/board/agenda/daemon/wsc.rb
index b3fd22e..5b49e73 100644
--- a/www/board/agenda/daemon/wsc.rb
+++ b/www/board/agenda/daemon/wsc.rb
@@ -97,7 +97,7 @@ EM.run do
       ssl = {use_ssl: options.protocol == 'wss'}
 
       response = Net::HTTP.start(options.host, options.port, ssl) do |http|
-        http.verify_mode = OpenSSL::SSL::VERIFY_NONE if options.verify
+        http.verify_mode = OpenSSL::SSL::VERIFY_NONE unless options.verify
         http.request(request)
       end