diff options
Diffstat (limited to 'sync/engine/build_commit_command.cc')
-rw-r--r-- | sync/engine/build_commit_command.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sync/engine/build_commit_command.cc b/sync/engine/build_commit_command.cc index 96772ad..71a67f2 100644 --- a/sync/engine/build_commit_command.cc +++ b/sync/engine/build_commit_command.cc @@ -139,6 +139,9 @@ SyncerError BuildCommitCommand::ExecuteImpl(SyncSession* session) { string name = meta_entry.Get(syncable::NON_UNIQUE_NAME); CHECK(!name.empty()); // Make sure this isn't an update. + // Note: Truncation is also performed in WriteNode::SetTitle(..). But this + // call is still necessary to handle any title changes that might originate + // elsewhere, or already be persisted in the directory. TruncateUTF8ToByteSize(name, 255, &name); sync_entry->set_name(name); |