We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2bbd4d8 + 06d263e commit 0e7fb80Copy full SHA for 0e7fb80
AuroraControlsMaui/SvgImageView.cs
@@ -170,6 +170,11 @@ private void SetSvgResource()
170
{
171
string embeddedImageName = EmbeddedImageName;
172
173
+ if (string.IsNullOrEmpty(embeddedImageName))
174
+ {
175
+ return;
176
+ }
177
+
178
lock (_pictureLock)
179
180
using var imageStream = EmbeddedResourceLoader.Load(embeddedImageName);
AuroraControlsMaui/Tile.cs
@@ -727,6 +727,11 @@ private void SetSvgResource()
727
728
729
730
731
732
733
734
735
736
737
0 commit comments