mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
Fixed: Test Email was always setting use SSL to true, it will now use the state of the checkbox.
This commit is contained in:
parent
15279d3e97
commit
2784655fcb
@ -182,7 +182,7 @@ function testSmtpSettings() {
|
||||
//Get the variables
|
||||
var server = $('#SmtpServer').val();
|
||||
var port = $('#SmtpPort').val();
|
||||
var ssl = $('#SmtpUseSsl').val();
|
||||
var ssl = $('#SmtpUseSsl').prop('checked');
|
||||
var username = $('#SmtpUsername').val();
|
||||
var password = $('#SmtpPassword').val();
|
||||
var fromAddress = $('#SmtpFromAddress').val();
|
||||
|
Loading…
x
Reference in New Issue
Block a user