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 7293289 commit 7f5cfe7Copy full SHA for 7f5cfe7
packages/firestore/src/platform/rn/base64.ts
@@ -35,7 +35,7 @@ export function decodeBase64(encoded: string): string {
35
);
36
} catch (e) {
37
if (e instanceof DecodeBase64StringError) {
38
- throw new Base64DecodeError('Invalid base64 string');
+ throw new Base64DecodeError('Invalid base64 string: ' + e);
39
} else {
40
throw e;
41
}
0 commit comments