From 5995e7aff649e91d6d9327cc20891349513bb6a6 Mon Sep 17 00:00:00 2001 From: Abin Simon Date: Fri, 12 May 2023 22:55:40 +0530 Subject: [PATCH] Fix json tag for modified time in sharepoint info (#3353) Small typo fix for metadata store. --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [x] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Supportability/Tests - [ ] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup #### Issue(s) * # #### Test Plan - [ ] :muscle: Manual - [ ] :zap: Unit test - [ ] :green_heart: E2E --- src/pkg/backup/details/details.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/backup/details/details.go b/src/pkg/backup/details/details.go index 273191ebd..c41384e69 100644 --- a/src/pkg/backup/details/details.go +++ b/src/pkg/backup/details/details.go @@ -866,7 +866,7 @@ type SharePointInfo struct { DriveID string `json:"driveID,omitempty"` ItemName string `json:"itemName,omitempty"` ItemType ItemType `json:"itemType,omitempty"` - Modified time.Time `josn:"modified,omitempty"` + Modified time.Time `json:"modified,omitempty"` Owner string `json:"owner,omitempty"` ParentPath string `json:"parentPath,omitempty"` Size int64 `json:"size,omitempty"`