Skip to content

Commit

Permalink
Fixed check for valid grade in Outcomes 1.0 response.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Miller committed Nov 25, 2016
1 parent 1b38bd4 commit 6f57612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SimpleLti/Controllers/OutcomesController.cs
Expand Up @@ -33,7 +33,7 @@ protected override LisResult ReadResult(string lisResultSourcedId)
{
if (_lisResult == null || !lisResultSourcedId.Equals(_lisResult.SourcedId, StringComparison.InvariantCultureIgnoreCase))
{
return new LisResult { IsValid = true };
return new LisResult { IsValid = false };
}
return _lisResult;
}
Expand Down

0 comments on commit 6f57612

Please sign in to comment.