MAS: remove default download location (#2070)

This commit is contained in:
Devin Binnie
2022-04-25 09:37:43 -04:00
committed by GitHub
parent 78b4bbf357
commit 9b3d37e953
3 changed files with 8 additions and 6 deletions

View File

@@ -12,12 +12,14 @@ import os from 'os';
import {ConfigV3} from 'types/config';
export const getDefaultDownloadLocation = (): string => {
export const getDefaultDownloadLocation = (): string | undefined => {
// eslint-disable-next-line no-undef
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
const homePath = __IS_MAC_APP_STORE__ ? path.join(os.homedir(), '../../../../') : os.homedir();
return path.join(homePath, 'Downloads');
if (__IS_MAC_APP_STORE__) {
return undefined;
}
return path.join(os.homedir(), 'Downloads');
};
const defaultPreferences: ConfigV3 = {