From 92daf5115a9b6fee6b811060098154c1d33da377 Mon Sep 17 00:00:00 2001 From: Kimura Youichi Date: Sun, 30 Jun 2019 09:31:59 +0900 Subject: [PATCH 1/1] =?utf8?q?=E3=82=B5=E3=83=A0=E3=83=8D=E3=82=A4?= =?utf8?q?=E3=83=AB=E8=AA=AD=E8=BE=BC=E4=B8=AD=E3=81=AB=E7=99=BA=E7=94=9F?= =?utf8?q?=E3=81=99=E3=82=8BObjectDisposedException=E3=82=92=E7=84=A1?= =?utf8?q?=E8=A6=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit おそらくロード中にOpenTweenを終了すると HttpClient が破棄されるためエラーになる https://osdn.net/projects/opentween/ticket/39363 --- OpenTween/OTPictureBox.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenTween/OTPictureBox.cs b/OpenTween/OTPictureBox.cs index e0d87d38..1ff43a68 100644 --- a/OpenTween/OTPictureBox.cs +++ b/OpenTween/OTPictureBox.cs @@ -124,6 +124,7 @@ namespace OpenTween catch (HttpRequestException) { } catch (InvalidImageException) { } catch (OperationCanceledException) { } + catch (ObjectDisposedException) { } catch (WebException) { } catch (IOException) { } } -- 2.11.0