1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-19 00:21:35 -05:00

Fix Debug assertion

This commit is contained in:
Justin Baur
2025-04-29 07:03:55 -04:00
parent 1a15e7a51d
commit a8083bc008

View File

@ -15,7 +15,7 @@ internal class InternalClientProvider : IClientProvider
public InternalClientProvider(GlobalSettings globalSettings)
{
// This class should not have been registered when it's not self hosted
Debug.Assert(!globalSettings.SelfHosted);
Debug.Assert(globalSettings.SelfHosted);
_globalSettings = globalSettings;
}