OSDN Git Service

TweenMain.Disposeでのイベントリスナーの解除漏れを修正
authorKimura Youichi <kim.upsilon@bucyou.net>
Thu, 7 Dec 2023 14:01:47 +0000 (23:01 +0900)
committerKimura Youichi <kim.upsilon@bucyou.net>
Thu, 7 Dec 2023 14:04:33 +0000 (23:04 +0900)
OpenTween/Tween.cs

index 5e0a527..efadf0c 100644 (file)
@@ -598,6 +598,7 @@ namespace OpenTween
             // http://msdn.microsoft.com/ja-jp/library/microsoft.win32.systemevents.powermodechanged.aspx
             Microsoft.Win32.SystemEvents.PowerModeChanged -= this.SystemEvents_PowerModeChanged;
             Microsoft.Win32.SystemEvents.TimeChanged -= this.SystemEvents_TimeChanged;
+            MyCommon.TwitterApiInfo.AccessLimitUpdated -= this.TwitterApiStatus_AccessLimitUpdated;
 
             this.disposed = true;
         }