Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dex
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
dex
Commits
944bed6d
Commit
944bed6d
authored
Sep 25, 2015
by
Derek Parker
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #136 from derekparker/fix-compilation-issues
email/smtp: Fix type comparison error
parents
e8f347a7
20857d71
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
smtp.go
email/smtp.go
+1
-1
No files found.
email/smtp.go
View file @
944bed6d
...
@@ -57,7 +57,7 @@ func (cfg *SmtpEmailerConfig) UnmarshalJSON(data []byte) error {
...
@@ -57,7 +57,7 @@ func (cfg *SmtpEmailerConfig) UnmarshalJSON(data []byte) error {
if
smtpCfg
.
Host
==
""
{
if
smtpCfg
.
Host
==
""
{
return
errors
.
New
(
"must set SMTP host"
)
return
errors
.
New
(
"must set SMTP host"
)
}
}
if
smtpCfg
.
Port
==
""
{
if
smtpCfg
.
Port
==
0
{
return
errors
.
New
(
"must set SMTP port"
)
return
errors
.
New
(
"must set SMTP port"
)
}
}
*
cfg
=
SmtpEmailerConfig
(
smtpCfg
)
*
cfg
=
SmtpEmailerConfig
(
smtpCfg
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment