We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81f6836 commit f202664Copy full SHA for f202664
Controller/LTILaunchController.php
@@ -43,7 +43,10 @@ public function launch(Request $request): Response
43
if (!$client) {
44
$client = $this->documentManager->getRepository(LTIClient::class)->findOneBy(['issuer' => 'https://developer.blackboard.com/']);
45
46
- throw new \Exception('Client not found.');
+ $client = $this->documentManager->getRepository(LTIClient::class)->findOneBy(['issuer' => 'https://blackboard.com']);
47
+ if (!$client) {
48
+ throw new \Exception('Client not found.');
49
+ }
50
}
51
$blackboardOrigin = true;
52
0 commit comments