Skip to content
Snippets Groups Projects
Commit 9d22235c authored by Frank Morgner's avatar Frank Morgner
Browse files

refs #12318

* return false instead of logically correct null to avoid throwing exception in subsequential core methods
parent 1d531fd1
No related merge requests found
...@@ -1530,8 +1530,10 @@ class FincILS extends PAIA implements LoggerAwareInterface ...@@ -1530,8 +1530,10 @@ class FincILS extends PAIA implements LoggerAwareInterface
return current($result->getRecords())->getUniqueId(); return current($result->getRecords())->getUniqueId();
} catch (\Exception $e) { } catch (\Exception $e) {
$this->debug($e); $this->debug($e);
// refs #12318 return null if no main identifier can delivered // refs #12318 return falls if no main identifier can delivered
return null; // null will logically correct but throws exceptions in
// subsequential core methods
return false;
} }
} }
// todo: check if return $ilsId is reasonable in context. // todo: check if return $ilsId is reasonable in context.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment