Fix missing interpolation with unknown database engines error

This commit is contained in:
DrSmugleaf
2021-03-13 03:04:19 +01:00
committed by GitHub
parent d60d7c0cb4
commit 22d06ff6a0

View File

@@ -130,7 +130,7 @@ namespace Content.Server.Database
_db = new ServerDbPostgres(options);
break;
default:
throw new InvalidDataException("Unknown database engine {engine}.");
throw new InvalidDataException($"Unknown database engine {engine}.");
}
}