diff --git a/Editor/Module Management/ModuleInfo.cs b/Editor/Module Management/ModuleInfo.cs index 061c9b20..57949f30 100644 --- a/Editor/Module Management/ModuleInfo.cs +++ b/Editor/Module Management/ModuleInfo.cs @@ -29,7 +29,7 @@ public string Identifier return name; } // if branch not set, default to the version in ModuleList - return gitUrl + (string.IsNullOrEmpty(branch) ? $"#{version}": $"#{branch}"); + return gitUrl + (string.IsNullOrEmpty(branch) ? $"#v{version}": $"#{branch}"); } }