Skip to content

Commit

Permalink
Fix protocol selection for SSL in IMAP/POP3IMAPHandler (openhab#7437)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan N. Klug <jan.n.klug@rub.de>
  • Loading branch information
J-N-K authored and markus7017 committed Sep 18, 2020
1 parent a69bb97 commit fbf731b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void initialize() {
protocol = baseProtocol;

if (config.security == ServerSecurity.SSL) {
protocol.concat("s");
protocol = protocol.concat("s");
}

if (config.port == 0) {
Expand Down

0 comments on commit fbf731b

Please sign in to comment.