Skip to content

Commit

Permalink
Ignore lines without an isin
Browse files Browse the repository at this point in the history
  • Loading branch information
dickwolff committed Mar 5, 2024
1 parent 99693f8 commit e5afd09
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/converters/ibkrConverter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,9 @@ export class IbkrConverter extends AbstractConverter {
/**
* @inheritdoc
*/
public isIgnoredRecord(_: IbkrRecord): boolean {
return false;
public isIgnoredRecord(record: IbkrRecord): boolean {

return !!record.isin;
}

private findExactDividendMatch(dividendRecord: IbkrDividendRecord, symbol: string, activities: GhostfolioActivity[]): GhostfolioActivity {
Expand Down

0 comments on commit e5afd09

Please sign in to comment.