Skip to content

Commit

Permalink
few fixes after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
kosyloa committed Sep 8, 2023
1 parent 43a99f7 commit 1bcd8d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Samples/QuoteTableApp/QuoteTableViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class QuoteTableViewController: UIViewController {
}
endpoint = try? builder?.build()
endpoint?.add(observer: self)
try? endpoint?.connect("demo.dxfeed.com:7300")
_ = try? endpoint?.connect("demo.dxfeed.com:7300")

subscription = try? endpoint?.getFeed()?.createSubscription(.quote)
profileSubscription = try? endpoint?.getFeed()?.createSubscription(.profile)
Expand Down
2 changes: 1 addition & 1 deletion Samples/QuoteTableApp/QuoteViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class QuoteViewController: UIViewController {
endpoint = try? DXEndpoint.builder().withRole(.feed).build()
endpoint?.add(observer: self)
}
try? endpoint?.connect(address)
_ = try? endpoint?.connect(address)
}

@IBAction func subscribeTapped(_ sender: Any) {
Expand Down

0 comments on commit 1bcd8d9

Please sign in to comment.