From 2a091e682d5a332a3019e798f3f73e12b0ce3d12 Mon Sep 17 00:00:00 2001 From: Anton Nikolaev Date: Fri, 4 Dec 2020 10:20:50 -0800 Subject: [PATCH] Save launcher settings to the correct folder Summary: Rust default configuration path changed recently which broke transferring of settings between flipper desktop and launcher. This diff fixes it. Reviewed By: passy Differential Revision: D25334963 fbshipit-source-id: d6ebea9e5cfa68858a9fc2a51102815d646ab319 --- desktop/app/src/utils/launcher.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/desktop/app/src/utils/launcher.tsx b/desktop/app/src/utils/launcher.tsx index 61972c482..2df544b73 100644 --- a/desktop/app/src/utils/launcher.tsx +++ b/desktop/app/src/utils/launcher.tsx @@ -24,9 +24,7 @@ const xdgConfigDir = () => export const launcherConfigDir = () => path.join( xdgConfigDir(), - os.platform() == 'darwin' - ? 'rs.flipper-launcher.flipper-launcher' - : 'flipper-launcher', + os.platform() == 'darwin' ? 'rs.flipper-launcher' : 'flipper-launcher', ); export function initLauncherHooks(config: ProcessConfig, store: Store) {