1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-16 23:27:30 -05:00

Provide client type in LD context (#4798)

This commit is contained in:
Matt Bishop
2024-09-24 10:18:20 -04:00
committed by GitHub
parent f7bc5dfb2e
commit 080057c564
2 changed files with 3 additions and 2 deletions

View File

@ -22,7 +22,6 @@ public static class DeviceTypes
DeviceType.LinuxCLI
];
public static IReadOnlyCollection<DeviceType> BrowserExtensionTypes { get; } =
[
DeviceType.ChromeExtension,
@ -45,7 +44,7 @@ public static class DeviceTypes
DeviceType.UnknownBrowser
];
private static ClientType ToClientType(DeviceType? deviceType)
public static ClientType ToClientType(DeviceType? deviceType)
{
return deviceType switch
{