Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Lauriethefish committed Apr 17, 2021
1 parent 2b42a0b commit 4dbef63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ModsManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ private async Task InstallDependency(DependencyInfo dependency, List<string> ins
{
logger.Warning($"Dependency with ID {dependency.Id} is already installed but with an incorrect version ({existing.Version} does not intersect {dependency.Version}). QuestPatcher will attempt to upgrade the dependency");
} else {
throw new ModInstallException($"Dependency with ID {dependency.Id} is already installed but with an incorrect version({existing.Version} does not intersect {dependency.Version}). Upgrading was not possible as there was no download link provided");
throw new ModInstallException($"Dependency with ID {dependency.Id} is already installed but with an incorrect version ({existing.Version} does not intersect {dependency.Version}). Upgrading was not possible as there was no download link provided");
}
} else if(!hasDownloadLink)
{
Expand Down

0 comments on commit 4dbef63

Please sign in to comment.