refactor
Some checks failed
BlockStorage/repertory/pipeline/head There was a failure building this commit

This commit is contained in:
2025-09-12 13:43:07 -05:00
parent 218545569d
commit 24bb67894f
2 changed files with 2 additions and 2 deletions

View File

@@ -227,7 +227,7 @@ auto create_meta_attributes(
{META_MODE, std::to_string(mode)},
{META_MODIFIED, std::to_string(modified_date)},
{META_OSXFLAGS, std::to_string(osx_flags)},
{META_PINNED, "0"},
{META_PINNED, utils::string::from_bool(false)},
{META_SOURCE, source_path},
{META_SIZE, std::to_string(size)},
{META_UID, std::to_string(uid)},

View File

@@ -209,7 +209,7 @@ auto create_meta_attributes(
{META_MODE, std::to_string(mode)},
{META_MODIFIED, std::to_string(modified_date)},
{META_OSXFLAGS, std::to_string(osx_flags)},
{META_PINNED, "0"},
{META_PINNED, utils::string::from_bool(false)},
{META_SIZE, std::to_string(size)},
{META_SOURCE, source_path},
{META_UID, std::to_string(uid)},