Skip to content

Commit

Permalink
init buyer/seller with nullable values
Browse files Browse the repository at this point in the history
  • Loading branch information
kosyloa committed Nov 2, 2023
1 parent 952a384 commit 519e6b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DXFeedFramework/Native/Events/Markets/TimeAndSale+Ext.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ extension TimeAndSale {
self.askPrice = native.ask_price
self.exchangeSaleConditions = String(pointee: native.exchange_sale_conditions)
self.flags = native.flags
self.buyer = String(pointee: native.buyer)
self.seller = String(pointee: native.seller)
self.buyer = String(nullable: native.buyer)
self.seller = String(nullable: native.seller)
}
}

0 comments on commit 519e6b1

Please sign in to comment.