OSDN Git Service

pbs.twimg.com の画像URLのフォーマット変更に対応
[opentween/open-tween.git] / OpenTween / Growl.cs
index 21dcf8a..70efc4d 100644 (file)
@@ -69,7 +69,7 @@ namespace OpenTween
             }
         }
 
-        public event EventHandler<NotifyCallbackEventArgs> NotifyClicked;
+        public event EventHandler<NotifyCallbackEventArgs>? NotifyClicked;
 
         public string AppName { get; }
 
@@ -268,7 +268,7 @@ namespace OpenTween
             };
 
             object? n;
-            if (icon != null || !string.IsNullOrEmpty(url))
+            if (icon != null || !MyCommon.IsNullOrEmpty(url))
             {
                 var gCore = _core!.GetType("Growl.CoreLibrary.Resource");
                 object? res;