diff --git a/src/Plugin.Iconize/Platform/UWP/PlatformExtensions.cs b/src/Plugin.Iconize/Platform/UWP/PlatformExtensions.cs index 6b9ddaa..132b363 100644 --- a/src/Plugin.Iconize/Platform/UWP/PlatformExtensions.cs +++ b/src/Plugin.Iconize/Platform/UWP/PlatformExtensions.cs @@ -31,7 +31,7 @@ public static FontFamily ToFontFamily(this IIconModule module) var moduleType = module.GetType(); if (!FontCache.ContainsKey(moduleType)) { - FontCache.Add(moduleType, new FontFamily($"ms-appx:///{moduleType.GetTypeInfo().Assembly.GetName().Name}/{module.FontPath}#{module.FontFamily.Replace(" Regular","")}")); + FontCache.Add(moduleType, new FontFamily($"ms-appx:///{moduleType.GetTypeInfo().Assembly.GetName().Name}/{module.FontPath}#{module.FontFamily.Replace(" Regular","").Replace(" Solid","")}")); } return FontCache[moduleType]; }