Richard Deeming
Richard Deeming
The blog post seems to suggest that `try-convert` will re-target the projects to .NET 5, which is not what I want. At least until there's support for viewing and exporting...
Looks like it's a bug in SkiaSharp: https://github.com/mono/SkiaSharp/pull/1817#issuecomment-967799471
Thanks for the reply. I'll try 2.80.4 to see if that resolves the issue for now. Unfortunately, MVC applications don't support transitive NuGet dependencies. If you install one package, it...
I've set the `Timeout` to `600_000`; with a folder that just contains the problematic message, I get the exception in a couple of seconds. A fetch request for many more...
It's definitely not a timeout issue. I've stepped through the code for this message: * `ImapFolderFetch.FetchSummaryItems` encounters the `BODYSTRUCTURE` atom; * That calls `ImapUtils.ParseBodyAsync`, which finds an `OpenParen` token; *...
That seems to be correct: ```csharp async Task Foo() => throw new InvalidOperationException("BANG!"); void FooCompleted(Task t) => Console.WriteLine("Foo completed"); async Task Main() { try { await Foo().ContinueWith( FooCompleted, CancellationToken.None, TaskContinuationOptions.OnlyOnRanToCompletion,...
Is there any workaround to fetch the details of the seemingly-corrupt message? Or do I need to fall back to the full `GetMessage` method if the `Fetch` method fails?
Excellent news, thanks. 👍
Thanks for letting me know. 👍
Thanks for the update. Based on the "duplicate" issue, do you think it's worth changing the title of this issue to make it easier to find, now that you've fixed...