We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 759fa21 commit cd39611Copy full SHA for cd39611
index.js
@@ -135,8 +135,8 @@ function sendNotification(endpoint, params) {
135
if (userAuth) {
136
if (typeof userAuth !== 'string') {
137
throw new Error('userAuth should be a base64-encoded string.');
138
- } else if (urlBase64.decode(userAuth).length < 12) {
139
- throw new Error('userAuth should be at least 12 bytes long');
+ } else if (urlBase64.decode(userAuth).length < 16) {
+ throw new Error('userAuth should be at least 16 bytes long');
140
}
141
142
0 commit comments