Fix (some) MongoDB errors

Co-Authored-By: taahanis <6778012+taahanis@users.noreply.github.com>
This commit is contained in:
Telesphoreo 2022-05-19 22:22:31 -05:00
parent 0bbe2d06f6
commit 9b0f928386
1 changed files with 3 additions and 4 deletions

View File

@ -30,18 +30,17 @@ public class MongoConnection implements PlexBase
{
if (database != null && !database.isEmpty())
{
connectionString = "mongodb://" + username + ":" + password + "@" + host + ":" + port + "/?authSource=" + database;
connectionString = "mongodb://" + username + ":" + password + "@" + host + ":" + port + "/?authSource=" + database + "&uuidRepresentation=STANDARD";
}
else
{
connectionString = "mongodb://" + username + ":" + password + "@" + host + ":" + port + "/";
connectionString = "mongodb://" + username + ":" + password + "@" + host + ":" + port + "/?uuidRepresentation=STANDARD";
}
}
else
{
connectionString = "mongodb://" + host + ":" + port + "/";
connectionString = "mongodb://" + host + ":" + port + "/?uuidRepresentation=STANDARD";
}
connectionString += "?uuidRepresentation=STANDARD";
PlexLog.debug("Using mongo connection string: " + connectionString);
MongoClient client = MongoClients.create(connectionString);
Datastore datastore = Morphia.createDatastore(client, database == null ? "admin" : database, MapperOptions.DEFAULT);