Skip to content

Commit

Permalink
Fix error in isLTIAdvantage()
Browse files Browse the repository at this point in the history
  • Loading branch information
csev committed Jan 14, 2021
1 parent da65365 commit 04fe24e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Launch.php
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public function isCoursera() {
* Return a boolean is this is an LTI Advantage launch
*/
public function isLTIAdvantage() {
return $this->ltiRawJWT !== null;
return $this->ltiRawJWT() !== null;
}

/**
Expand Down

0 comments on commit 04fe24e

Please sign in to comment.