blob: 12f1493dab46c2a4ba2902e9e481b63928800147 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
--- ts/state/ducks/user.ts.orig 2023-10-19 19:29:53 UTC
+++ ts/state/ducks/user.ts
@@ -23,7 +23,7 @@ export type UserStateType = Readonly<{
isMainWindowMaximized: boolean;
localeMessages: LocaleMessagesType;
menuOptions: MenuOptionsType;
- osName: 'linux' | 'macos' | 'windows' | undefined;
+ osName: 'linux' | 'macos' | 'windows' | 'freebsd' | undefined;
ourAci: AciString | undefined;
ourConversationId: string | undefined;
ourDeviceId: number | undefined;
@@ -114,7 +114,7 @@ export function getEmptyState(): UserStateType {
// Reducer
export function getEmptyState(): UserStateType {
- let osName: 'windows' | 'macos' | 'linux' | undefined;
+ let osName: 'windows' | 'macos' | 'linux' | 'freebsd' | undefined;
if (OS.isWindows()) {
osName = 'windows';
@@ -122,6 +122,8 @@ export function getEmptyState(): UserStateType {
osName = 'macos';
} else if (OS.isLinux()) {
osName = 'linux';
+ } else if (OS.isFreeBSD()) {
+ osName = 'freebsd';
}
return {
|