Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: fixed regex for parsing base64String, and updated subscribeToPu…
…sh function. (vercel#73940) ### What? Change 1: At line 107, the regex code is now fixed to replace all "-" with "+", which wasn't as expected with previous code, window.atob() would throw an error saying the string is not encoded properly. The variable base64 will now have a URL safe base64String. Change 2: At line 177 and 178, the function is now updated to call the server action subscribeUser() with a serialized object instead of a PushSubscription object, as server actions can only be called with serialized objects. ### Why? I followed to docs to setup a PWA project with next, and I encountered issues with the code mentioned in the documentation. ### How? The fixed code snippets will work as expected, and anyone following the docs later can find them helpful. --------- Co-authored-by: Lee Robinson <[email protected]> Co-authored-by: JJ Kasper <[email protected]>
- Loading branch information