Fix category use date.

This commit is contained in:
James Cole 2019-02-08 16:56:07 +01:00
parent 1ec2772255
commit e1bb0298cb

View File

@ -292,7 +292,7 @@ class CategoryRepository implements CategoryRepositoryInterface
return $lastTransactionDate;
}
if ($lastTransactionDate < $lastJournalDate) {
if ($lastTransactionDate > $lastJournalDate) {
return $lastTransactionDate;
}