Skip to content

Commit a59de04

Browse files
committed
fix: check url/token only if they exist
1 parent 6ab0fb8 commit a59de04

File tree

3 files changed

+27
-36
lines changed

3 files changed

+27
-36
lines changed

platforms/cloudflare.ts

+7-10
Original file line numberDiff line numberDiff line change
@@ -58,22 +58,19 @@ export class Redis extends core.Redis {
5858
console.warn(
5959
`[Upstash Redis] The 'url' property is missing or undefined in your Redis config.`
6060
);
61-
}
62-
63-
if (!config.token) {
61+
} else if (config.url.startsWith(" ") || config.url.endsWith(" ") || /\r|\n/.test(config.url)) {
6462
console.warn(
65-
`[Upstash Redis] The 'token' property is missing or undefined in your Redis config.`
63+
"[Upstash Redis] The redis url contains whitespace or newline, which can cause errors!"
6664
);
6765
}
6866

69-
if (config.url!.startsWith(" ") || config.url!.endsWith(" ") || /\r|\n/.test(config.url!)) {
67+
if (!config.token) {
7068
console.warn(
71-
"[Upstash Redis] The redis url contains whitespace or newline, which can cause errors!"
69+
`[Upstash Redis] The 'token' property is missing or undefined in your Redis config.`
7270
);
73-
}
74-
if (
75-
config.token!.startsWith(" ") ||
76-
config.token!.endsWith(" ") ||
71+
} else if (
72+
config.token.startsWith(" ") ||
73+
config.token.endsWith(" ") ||
7774
/\r|\n/.test(config.token!)
7875
) {
7976
console.warn(

platforms/fastly.ts

+8-11
Original file line numberDiff line numberDiff line change
@@ -56,23 +56,20 @@ export class Redis extends core.Redis {
5656
console.warn(
5757
`[Upstash Redis] The 'url' property is missing or undefined in your Redis config.`
5858
);
59-
}
60-
61-
if (!config.token) {
59+
} else if (config.url.startsWith(" ") || config.url.endsWith(" ") || /\r|\n/.test(config.url)) {
6260
console.warn(
63-
`[Upstash Redis] The 'token' property is missing or undefined in your Redis config.`
61+
"[Upstash Redis] The redis url contains whitespace or newline, which can cause errors!"
6462
);
6563
}
6664

67-
if (config.url!.startsWith(" ") || config.url!.endsWith(" ") || /\r|\n/.test(config.url!)) {
65+
if (!config.token) {
6866
console.warn(
69-
"[Upstash Redis] The redis url contains whitespace or newline, which can cause errors!"
67+
`[Upstash Redis] The 'token' property is missing or undefined in your Redis config.`
7068
);
71-
}
72-
if (
73-
config.token!.startsWith(" ") ||
74-
config.token!.endsWith(" ") ||
75-
/\r|\n/.test(config.token!)
69+
} else if (
70+
config.token.startsWith(" ") ||
71+
config.token.endsWith(" ") ||
72+
/\r|\n/.test(config.token)
7673
) {
7774
console.warn(
7875
"[Upstash Redis] The redis token contains whitespace or newline, which can cause errors!"

platforms/nodejs.ts

+12-15
Original file line numberDiff line numberDiff line change
@@ -105,27 +105,24 @@ export class Redis extends core.Redis {
105105
console.warn(
106106
`[Upstash Redis] The 'url' property is missing or undefined in your Redis config.`
107107
);
108-
}
109-
110-
if (!configOrRequester.token) {
108+
} else if (
109+
configOrRequester.url.startsWith(" ") ||
110+
configOrRequester.url.endsWith(" ") ||
111+
/\r|\n/.test(configOrRequester.url)
112+
) {
111113
console.warn(
112-
`[Upstash Redis] The 'token' property is missing or undefined in your Redis config.`
114+
"[Upstash Redis] The redis url contains whitespace or newline, which can cause errors!"
113115
);
114116
}
115117

116-
if (
117-
configOrRequester.url!.startsWith(" ") ||
118-
configOrRequester.url!.endsWith(" ") ||
119-
/\r|\n/.test(configOrRequester.url!)
120-
) {
118+
if (!configOrRequester.token) {
121119
console.warn(
122-
"[Upstash Redis] The redis url contains whitespace or newline, which can cause errors!"
120+
`[Upstash Redis] The 'token' property is missing or undefined in your Redis config.`
123121
);
124-
}
125-
if (
126-
configOrRequester.token!.startsWith(" ") ||
127-
configOrRequester.token!.endsWith(" ") ||
128-
/\r|\n/.test(configOrRequester.token!)
122+
} else if (
123+
configOrRequester.token.startsWith(" ") ||
124+
configOrRequester.token.endsWith(" ") ||
125+
/\r|\n/.test(configOrRequester.token)
129126
) {
130127
console.warn(
131128
"[Upstash Redis] The redis token contains whitespace or newline, which can cause errors!"

0 commit comments

Comments
 (0)