File tree 3 files changed +27
-36
lines changed
3 files changed +27
-36
lines changed Original file line number Diff line number Diff line change @@ -58,22 +58,19 @@ export class Redis extends core.Redis {
58
58
console . warn (
59
59
`[Upstash Redis] The 'url' property is missing or undefined in your Redis config.`
60
60
) ;
61
- }
62
-
63
- if ( ! config . token ) {
61
+ } else if ( config . url . startsWith ( " " ) || config . url . endsWith ( " " ) || / \r | \n / . test ( config . url ) ) {
64
62
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!"
66
64
) ;
67
65
}
68
66
69
- if ( config . url ! . startsWith ( " " ) || config . url ! . endsWith ( " " ) || / \r | \n / . test ( config . url ! ) ) {
67
+ if ( ! config . token ) {
70
68
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.`
72
70
) ;
73
- }
74
- if (
75
- config . token ! . startsWith ( " " ) ||
76
- config . token ! . endsWith ( " " ) ||
71
+ } else if (
72
+ config . token . startsWith ( " " ) ||
73
+ config . token . endsWith ( " " ) ||
77
74
/ \r | \n / . test ( config . token ! )
78
75
) {
79
76
console . warn (
Original file line number Diff line number Diff line change @@ -56,23 +56,20 @@ export class Redis extends core.Redis {
56
56
console . warn (
57
57
`[Upstash Redis] The 'url' property is missing or undefined in your Redis config.`
58
58
) ;
59
- }
60
-
61
- if ( ! config . token ) {
59
+ } else if ( config . url . startsWith ( " " ) || config . url . endsWith ( " " ) || / \r | \n / . test ( config . url ) ) {
62
60
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!"
64
62
) ;
65
63
}
66
64
67
- if ( config . url ! . startsWith ( " " ) || config . url ! . endsWith ( " " ) || / \r | \n / . test ( config . url ! ) ) {
65
+ if ( ! config . token ) {
68
66
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.`
70
68
) ;
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 )
76
73
) {
77
74
console . warn (
78
75
"[Upstash Redis] The redis token contains whitespace or newline, which can cause errors!"
Original file line number Diff line number Diff line change @@ -105,27 +105,24 @@ export class Redis extends core.Redis {
105
105
console . warn (
106
106
`[Upstash Redis] The 'url' property is missing or undefined in your Redis config.`
107
107
) ;
108
- }
109
-
110
- if ( ! configOrRequester . token ) {
108
+ } else if (
109
+ configOrRequester . url . startsWith ( " " ) ||
110
+ configOrRequester . url . endsWith ( " " ) ||
111
+ / \r | \n / . test ( configOrRequester . url )
112
+ ) {
111
113
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!"
113
115
) ;
114
116
}
115
117
116
- if (
117
- configOrRequester . url ! . startsWith ( " " ) ||
118
- configOrRequester . url ! . endsWith ( " " ) ||
119
- / \r | \n / . test ( configOrRequester . url ! )
120
- ) {
118
+ if ( ! configOrRequester . token ) {
121
119
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.`
123
121
) ;
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 )
129
126
) {
130
127
console . warn (
131
128
"[Upstash Redis] The redis token contains whitespace or newline, which can cause errors!"
You can’t perform that action at this time.
0 commit comments