Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Commit

Permalink
Merge pull request #23 from VoIPGRID/feature/fix-number-label
Browse files Browse the repository at this point in the history
Fixed number label when call is outgoing
  • Loading branch information
Bob Voorneveld committed Dec 9, 2016
2 parents 67acd71 + bdf6233 commit 0b16c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Example/VialerSIPLib/VSLCallViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ class VSLCallViewController: UIViewController, VSLKeypadViewControllerDelegate {
if let name = call.callerName, name != "" {
return "\(name)\n\(call.callerNumber!)"
} else {
return call.callerNumber!
return call.isIncoming ? call.callerNumber! : call.numberToCall
}
}

Expand Down

0 comments on commit 0b16c8e

Please sign in to comment.