mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-21 09:00:07 +00:00
Lots of new code to test the import routine.
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
This commit is contained in:
@@ -99,7 +99,7 @@ class ExportJobRepository implements ExportJobRepositoryInterface
|
||||
*/
|
||||
public function findByKey(string $key): ExportJob
|
||||
{
|
||||
$result = $this->user->exportJobs()->where('key', $key)->first();
|
||||
$result = $this->user->exportJobs()->where('key', $key)->first(['export_jobs.*']);
|
||||
if (is_null($result)) {
|
||||
return new ExportJob;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user