Sfoglia il codice sorgente

Merge branch '1290-rethinkdb-creation-fix' into 'master'

Resolve "Undefined variable is used when creating DB in rethink"

Closes #1290

See merge request Isleward/isleward!419
tags/v0.4^2
Big Bad Waffle 4 anni fa
parent
commit
df9ed283f3
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/server/db/ioRethink.js

+ 1
- 1
src/server/db/ioRethink.js Vedi File

@@ -18,7 +18,7 @@ module.exports = {

create: async function () {
try {
await r.dbCreate(this.useDb).run();
await r.dbCreate(serverConfig.dbName).run();
} catch (e) {

}


Caricamento…
Annulla
Salva