diff --git a/CHANGELOG.md b/CHANGELOG.md index a9479588c..9bf834acd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,9 +30,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - SharePoint now correctly displays site urls on `backup list`, instead of the site id. - Drives with a directory containing a folder named 'folder' will now restore without error. - The CORSO_LOG_FILE env is appropriately utilized if no --log-file flag is provided. +- Fixed Exchange events progress output to show calendar names instead of IDs. ### Known Issues - Restoring a OneDrive or SharePoint file with the same name as a file with that name as its M365 ID may restore both items. +- Exchange event restores will display calendar IDs instead of names in the progress output. ## [v0.6.1] (beta) - 2023-03-21 diff --git a/src/internal/connector/exchange/exchange_data_collection.go b/src/internal/connector/exchange/exchange_data_collection.go index 97a89e3f5..4a2760be4 100644 --- a/src/internal/connector/exchange/exchange_data_collection.go +++ b/src/internal/connector/exchange/exchange_data_collection.go @@ -182,8 +182,7 @@ func (col *Collection) streamItems(ctx context.Context, errs *fault.Bus) { colProgress, closer = observe.CollectionProgress( ctx, col.fullPath.Category().String(), - // TODO(keepers): conceal compliance in path, drop Hide() - clues.Hide(col.fullPath.Folder(false))) + col.LocationPath().Elements()) go closer()