From d1b40c280b7340cfad5c9ea6cb03e5e59204e011 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Thu, 16 Nov 2023 17:52:19 +0000 Subject: [PATCH] Fixed bug with wallet path under cake wallet --- src/wallet/plain_wallet_api.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wallet/plain_wallet_api.cpp b/src/wallet/plain_wallet_api.cpp index 8b720c7b..1d19c298 100644 --- a/src/wallet/plain_wallet_api.cpp +++ b/src/wallet/plain_wallet_api.cpp @@ -106,6 +106,8 @@ namespace plain_wallet std::string get_app_config_folder() { +#ifndef CAKEWALLET + return ""; #ifdef WIN32 std::string path = get_bundle_working_dir() + "/" + APP_CONFIG_FOLDER + "/"; #else