-
-
Notifications
You must be signed in to change notification settings - Fork 828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.4.2 Gmail Inbox = null #383
Comments
I can't seem to reproduce this with 1.4.2 and there have been no patches that I can find that would affect this between 1.4.1 and 1.4.2. Do you have a test case I can use to reproduce this problem? |
Just tried the upgrade again and confirmed it still fails. It doesn't fail with a non Google IMAP though. I will try to create something standalone to repro. |
OK, managed to repro the problem in a console app using the following code.
Confirmed that 1.4.2 fails and 1.4.1 works. What I did notice is I deliberately supplied an incorrect password and the authentication section passed silently in 1.4.2 but in 1.4.1 it warned of incorrect password. So something has definitely changed. James |
Okay, so supplying an invalid password is broken now in that it doesn't properly emit an exception. That sounds plausible because I did change some of that logic recently. I'll take a look. |
Yep! Found and fixed the issue! Thanks for reporting. I'll try to push a new nuget release soon. |
I confirm it fixed my issue. Thanks On Tuesday, 16 August 2016, Jeffrey Stedfast notifications@github.com
|
I just upgraded to 1.4.2 and found that I was getting a null exception when requesting the inbox.
var inbox = client.Inbox;
inbox.Open(FolderAccess.ReadWrite);
I rolled back to version 1.4.1 and it works as usual.
The text was updated successfully, but these errors were encountered: