diff --git a/xplat/Flipper/ConnectionContextStore.cpp b/xplat/Flipper/ConnectionContextStore.cpp index bc0e059cd..a91f80a0f 100644 --- a/xplat/Flipper/ConnectionContextStore.cpp +++ b/xplat/Flipper/ConnectionContextStore.cpp @@ -37,8 +37,10 @@ bool ConnectionContextStore::hasRequiredFiles() { loadStringFromFile(absoluteFilePath(CLIENT_CERT_FILE_NAME)); std::string privateKey = loadStringFromFile(absoluteFilePath(PRIVATE_KEY_FILE)); + std::string config = + loadStringFromFile(absoluteFilePath(CONNECTION_CONFIG_FILE)); - if (caCert == "" || clientCert == "" || privateKey == "") { + if (caCert == "" || clientCert == "" || privateKey == "" || config == "") { return false; } return true;