File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
packages/database/src/core/util/libs Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,9 @@ export const parseURL = function(
152
152
// For pathString, questionInd will always come after slashInd
153
153
pathString = decodePath ( dataURL . substring ( slashInd , questionInd ) ) ;
154
154
}
155
- let queryParams = decodeQuery ( dataURL . substring ( Math . min ( dataURL . length , questionInd + 1 ) ) ) ;
155
+ let queryParams = decodeQuery (
156
+ dataURL . substring ( Math . min ( dataURL . length , questionInd + 1 ) )
157
+ ) ;
156
158
157
159
// If we have a port, use scheme for determining if it's secure.
158
160
colonInd = host . indexOf ( ':' ) ;
@@ -176,7 +178,7 @@ export const parseURL = function(
176
178
// Support `ns` query param if subdomain not already set
177
179
if ( subdomain === '' && queryParams . has ( 'ns' ) ) {
178
180
subdomain = queryParams . get ( 'ns' ) ;
179
- console . log ( " here" , queryParams , subdomain ) ;
181
+ console . log ( ' here' , queryParams , subdomain ) ;
180
182
}
181
183
}
182
184
You can’t perform that action at this time.
0 commit comments