Skip to content

Commit

Permalink
fix: add missing v
Browse files Browse the repository at this point in the history
  • Loading branch information
HarrisonHough committed Jan 12, 2023
1 parent 411037d commit 09eccaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/Module Management/ModuleInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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}");

}
}
Expand Down

0 comments on commit 09eccaf

Please sign in to comment.