Files
zulip-desktop/app/renderer/js/utils/system-util.ts
Anders Kaseorg 56a4461c2a xo: Fix n/file-extension-in-import, maybe.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2023-01-03 16:05:28 -08:00

17 lines
393 B
TypeScript

import {ipcRenderer} from "../typed-ipc-renderer.js";
export const connectivityError: string[] = [
"ERR_INTERNET_DISCONNECTED",
"ERR_PROXY_CONNECTION_FAILED",
"ERR_CONNECTION_RESET",
"ERR_NOT_CONNECTED",
"ERR_NAME_NOT_RESOLVED",
"ERR_NETWORK_CHANGED",
];
const userAgent = ipcRenderer.sendSync("fetch-user-agent");
export function getUserAgent(): string {
return userAgent;
}