Skip to content

Commit

Permalink
Merge pull request #2879 from lifecoder-phoenix/patch-1
Browse files Browse the repository at this point in the history
Fix for #2544
  • Loading branch information
jmacato committed Sep 18, 2019
2 parents 042414e + 112fe15 commit bedb8d7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Shared/PlatformSupport/AssetLoader.cs
Expand Up @@ -242,6 +242,7 @@ private AssemblyDescriptor GetAssembly(string name)
throw new InvalidOperationException(
$"Assembly {name} needs to be referenced and explicitly loaded before loading resources");
#else
name = Uri.UnescapeDataString(name);
AssemblyNameCache[name] = rv = new AssemblyDescriptor(Assembly.Load(name));
#endif
}
Expand Down

0 comments on commit bedb8d7

Please sign in to comment.