From f08870b03c4c2ae51bacc1226582479e83c46ef5 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Wed, 16 Apr 2025 09:22:59 -0500 Subject: [PATCH] fix --- .../librepertory/src/drives/fuse/remotefuse/remote_server.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/repertory/librepertory/src/drives/fuse/remotefuse/remote_server.cpp b/repertory/librepertory/src/drives/fuse/remotefuse/remote_server.cpp index 7f5055c5..c7ad2540 100644 --- a/repertory/librepertory/src/drives/fuse/remotefuse/remote_server.cpp +++ b/repertory/librepertory/src/drives/fuse/remotefuse/remote_server.cpp @@ -1769,12 +1769,11 @@ auto remote_server::update_to_windows_format(const std::string &root_api_path, attributes |= FILE_ATTRIBUTE_ARCHIVE; attributes &= (~FILE_ATTRIBUTE_DIRECTORY); item[JSON_META][META_ATTRIBUTES] = std::to_string(attributes); - drive_.set_item_meta(api_path, item[JSON_META]); update_meta = true; } if (update_meta) { - drive_.set_item_meta(api_path, item[JSON_META]); + drive_.set_item_meta(api_path, item[JSON_META].get()); } return item;