Skip to content

Commit fca1bb1

Browse files
committed
Merge pull request #628 from kiichi/patch-1
sample code fix Thanks, good catch :)
2 parents 9b54c06 + 2fdcb43 commit fca1bb1

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)