Skip to content

Commit 2fdcb43

Browse files
committed
sample code fix
exception to ex
1 parent 9b54c06 commit 2fdcb43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ broker.OnNotificationFailed += (notification, aggregateEx) => {
3434
aggregateEx.Handle (ex => {
3535

3636
// See what kind of exception it was to further diagnose
37-
if (exception is ApnsNotificationException) {
37+
if (ex is ApnsNotificationException) {
3838
var apnsEx = ex as ApnsNotificationException;
3939

4040
// Deal with the failed notification

0 commit comments

Comments
 (0)