Skip to content

Commit

Permalink
Fix initKeystore
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaliy Vlasov committed Apr 30, 2020
1 parent f527801 commit 7352f8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/react-native-status/desktop/rctstatus.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ void RCTStatus::prepareDirAndUpdateConfig(QString configString,

void RCTStatus::initKeystore() {
qCInfo(RCTSTATUS) << "::initKeystore call";
QString rootDir = getDataStoragePath();
const char *result = InitKeystore(rootDir.toUtf8().data());
QString keystoreDir = getDataStoragePath() + "/keystore";
const char *result = InitKeystore(keystoreDir.toUtf8().data());
logStatusGoResult("::initKeystore InitKeystore", result);
}

Expand Down

0 comments on commit 7352f8f

Please sign in to comment.