Skip to content

Commit

Permalink
Fix type casting (NOJIRA)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benn Oshrin committed Sep 14, 2019
1 parent a362dd5 commit 8967180
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/Controller/TierApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ protected function doMatchRequest(bool $searchOnly=false) {
if(!$searchOnly) {
// This should also correctly handle an update match attribute request
// that did not originally have a referenceid
$MatchService->attachReferenceId($sor, $sorid, $AttributeManager, $refIds[0]);
$MatchService->attachReferenceId($sor, $sorid, $AttributeManager, (string)$refIds[0]);
}

$result = ['referenceId' => $refIds[0]];
Expand Down

0 comments on commit 8967180

Please sign in to comment.