diff --git a/Source/Editor/Modules/SourceCodeEditing/CodeDocsModule.cs b/Source/Editor/Modules/SourceCodeEditing/CodeDocsModule.cs index a26fe9924..311767caf 100644 --- a/Source/Editor/Modules/SourceCodeEditing/CodeDocsModule.cs +++ b/Source/Editor/Modules/SourceCodeEditing/CodeDocsModule.cs @@ -293,7 +293,7 @@ namespace FlaxEditor.Modules.SourceCodeEditing var assemblyPath = Utils.GetAssemblyLocation(assembly); var assemblyName = assembly.GetName().Name; var xmlFilePath = Path.ChangeExtension(assemblyPath, ".xml"); - if (!File.Exists(assemblyPath)) + if (!File.Exists(assemblyPath) && !string.IsNullOrEmpty(assemblyPath)) { var uri = new UriBuilder(assemblyPath); var path = Uri.UnescapeDataString(uri.Path);