Skip to content

Commit

Permalink
fix(quoteSummary): allow totalOtherIncomeExpenseNet null (fixes #734)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadicc committed Feb 5, 2024
1 parent bf58aa8 commit 1d0d48e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion schema.json
Expand Up @@ -7157,7 +7157,7 @@
"yahooFinanceType": "number|null"
},
"totalOtherIncomeExpenseNet": {
"yahooFinanceType": "number"
"yahooFinanceType": "number|null"
},
"ebit": {
"yahooFinanceType": "number"
Expand Down
2 changes: 1 addition & 1 deletion src/modules/quoteSummary-iface.ts
Expand Up @@ -569,7 +569,7 @@ export interface IncomeStatementHistoryElement {
otherOperatingExpenses: number | null;
totalOperatingExpenses: number;
operatingIncome: number | null; // Example of null in EREGL.IS (#517)
totalOtherIncomeExpenseNet: number;
totalOtherIncomeExpenseNet: number | null; // null since Since Feb 22 (#734)
ebit: number;
interestExpense: number | null;
incomeBeforeTax: number | null;
Expand Down

0 comments on commit 1d0d48e

Please sign in to comment.