Skip to content

Commit 903c392

Browse files
committed
Spell out explicitly what visiting an UnsubscribeMessage SubscribeURL will do
1 parent 8bbaac2 commit 903c392

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,10 @@ Unsubscribing looks the same as subscribing, except the message type will be
119119

120120
```javascript
121121
if (message['Type'] === 'UnsubscribeConfirmation') {
122+
// Unsubscribed in error? You can resubscribe by visiting the endpoint
123+
// provided as the message's SubscribeURL field.
122124
https.get(message['SubscribeURL'], function (res) {
123-
// You have unsubscribed your endpoint.
125+
// You have re-subscribed your endpoint.
124126
});
125127
}
126128
```

0 commit comments

Comments
 (0)