From 6d3bf2fdc38d8ae2d2705af4ef9d6d36d1984b6e Mon Sep 17 00:00:00 2001 From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> Date: Mon, 8 Sep 2025 20:50:22 -0700 Subject: [PATCH] fix: need to create account twice due to commit latency?? (#1873) idk fixes the issue --- dMasterServer/MasterServer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dMasterServer/MasterServer.cpp b/dMasterServer/MasterServer.cpp index 38abdc71..2d108a2d 100644 --- a/dMasterServer/MasterServer.cpp +++ b/dMasterServer/MasterServer.cpp @@ -159,6 +159,7 @@ int main(int argc, char** argv) { } MigrationRunner::RunMigrations(); + Database::Get()->Commit(); const auto resServerPath = BinaryPathFinder::GetBinaryDir() / "resServer"; std::filesystem::create_directories(resServerPath); const bool cdServerExists = std::filesystem::exists(resServerPath / "CDServer.sqlite");