Skip to content
This repository has been archived by the owner on Jul 28, 2021. It is now read-only.

Commit

Permalink
Update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
nrgill28 committed Apr 14, 2021
1 parent 53d04ae commit 2f04782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DeliCounter/Backend/ModManagement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ internal static void DefaultAction(Mod mod)
// There is no version that satisfies this?
if (depVersion is null)
{
SentrySdk.CaptureMessage($"User tries to install {mod.Guid} @ {versionNumber} but no valid version for dependency {depMod.Guid} was found!");
SentrySdk.CaptureMessage($"Database: {mod.Guid} @ {versionNumber} is not satified by any version of {depMod.Guid}");
yield return new DependenciesUnsatisfiedModOperation(mod, versionNumber, depMod);
yield break;
}
Expand Down

0 comments on commit 2f04782

Please sign in to comment.