Skip to content

Commit

Permalink
BaseModel: update Long check
Browse files Browse the repository at this point in the history
  • Loading branch information
kaloudis committed Dec 3, 2024
1 parent 7b177ef commit b5c283b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions models/BaseModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export default class BaseModel {
Object.keys(data).forEach((field: any) => {
// Handle Longs
if (
data[field] &&
data[field].high !== undefined &&
data[field].low !== undefined
) {
Expand Down

0 comments on commit b5c283b

Please sign in to comment.