Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
fix incremental backup
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanfkeepers committed Jan 25, 2024
1 parent e298881 commit 3912a64
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/pkg/backup/details/entry.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@ func (de Entry) ToLocationIDer(backupVersion int) (LocationIDer, error) {
}

baseLoc = path.Builder{}.Append(p.Root).Append(p.Folders...)

case TeamsChat:
baseLoc = &path.Builder{}

default:
return nil, clues.New("undentified item type").With("item_type", de.ItemInfo.infoType())
}

if baseLoc == nil {
Expand Down

0 comments on commit 3912a64

Please sign in to comment.