diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-07-10 17:51:19 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-07-10 17:51:19 +0200 |
commit | 4c75b5cc7db95ff162fdd15ac02a41c76020a891 (patch) | |
tree | ca23b76753b6a1a58227f1927e65fffea8fd4faa /src/util | |
parent | add prepublish script (diff) | |
download | server-4c75b5cc7db95ff162fdd15ac02a41c76020a891.tar.xz |
auto throw error if findOne doesn't find any doc
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/Database.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util/Database.ts b/src/util/Database.ts index ed596907..16e07d3b 100644 --- a/src/util/Database.ts +++ b/src/util/Database.ts @@ -5,7 +5,6 @@ import EventEmitter from "events"; const uri = process.env.MONGO_URL || "mongodb://localhost:27017/fosscord?readPreference=secondaryPreferred"; import { URL } from "url"; -// TODO: auto throw error if findOne doesn't find anything const url = new URL(uri.replace("mongodb://", "http://")); const connection = mongoose.createConnection(uri, { |