From 2e06143a4a3811329c64e65c54e6087cb9583a17 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Wed, 7 May 2014 11:11:34 -0700 Subject: [PATCH] fixing minor human error --- src/NOCQ/Plugins/Email/ImapInput.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NOCQ/Plugins/Email/ImapInput.cs b/src/NOCQ/Plugins/Email/ImapInput.cs index 9ece6b2..5b68257 100644 --- a/src/NOCQ/Plugins/Email/ImapInput.cs +++ b/src/NOCQ/Plugins/Email/ImapInput.cs @@ -22,7 +22,7 @@ namespace NOCQ.Plugins.Email { var sets = settings as EmailSettings; - if (sets.GetType().GetProperty("Username") != null + if (sets.GetType().GetProperty("Username") == null || sets.GetType().GetProperty("Password") == null || sets.GetType().GetProperty("Host") == null || sets.GetType().GetProperty("Folder") == null)