Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@ data = await redis.spop('animals', 1)
console.log(data)
```

## Troubleshooting

We have a [dedicated page](https://docs.upstash.com/troubleshooting) for common
problems. If you can't find a solution, please
[open an issue](https://github.com/upstash/upstash-redis/issues/new).

## Docs

See [the documentation](https://docs.upstash.com/features/javascriptsdk) for
Expand Down
11 changes: 6 additions & 5 deletions pkg/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,12 @@ function base64decode(b64: string): string {
} catch {
dec = b64;
}
try {
return decodeURIComponent(dec);
} catch {
return dec;
}
return dec;
// try {
// return decodeURIComponent(dec);
// } catch {
// return dec;
// }
}

function decode(raw: ResultError): ResultError {
Expand Down