Skip to content

Commit 2fb4f89

Browse files
committed
Fix whitespace in getDatabaseAdapter
1 parent 1ae3613 commit 2fb4f89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ParseServer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,10 @@ class ParseServer {
254254

255255
getDatabaseAdapter(databaseURI, collectionPrefix, databaseOptions) {
256256
let protocol;
257-
try{
257+
try {
258258
const parsedURI = url.parse(databaseURI);
259259
protocol = parsedURI.protocol ? parsedURI.protocol.toLowerCase() : null;
260-
}catch(e){}
260+
} catch(e) {}
261261
switch (protocol) {
262262
case 'postgres:':
263263
return new PostgresStorageAdapter({

0 commit comments

Comments
 (0)