From b7f79c41927890ccdd725548b11589e3468bb6a9 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 19 Dec 2024 10:31:18 -0600 Subject: [PATCH] refactor remote mount --- repertory/librepertory/src/app_config.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/repertory/librepertory/src/app_config.cpp b/repertory/librepertory/src/app_config.cpp index b52de10b..dd63ce7f 100644 --- a/repertory/librepertory/src/app_config.cpp +++ b/repertory/librepertory/src/app_config.cpp @@ -590,6 +590,7 @@ auto app_config::load() -> bool { get_value(json_document, "PreferredDownloadType", preferred_download_type_, ret); get_value(json_document, "RetryReadCount", retry_read_count_, ret); + get_value(json_document, "RemoteConfig", remote_config_, ret); if (json_document.find("RemoteMount") != json_document.end()) { auto remoteMount = json_document.at("RemoteMount"); get_value(remoteMount, "Enable", enable_remote_mount_, ret);