[NUI] Support null URL path.
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / BaseComponents / ImageView.cs
index 3c6bc92..635fb13 100755 (executable)
@@ -259,7 +259,7 @@ namespace Tizen.NUI.BaseComponents
             }
             set
             {
-                _url = value;
+                _url = (value == null? "" : value);
                 UpdateImage();
             }
         }
@@ -454,4 +454,4 @@ namespace Tizen.NUI.BaseComponents
 
     }
 
-}
\ No newline at end of file
+}