Skip to content

Commit

Permalink
fix Upload Error - Invalid Argument - 0.23.0-alpha5 - Windows #534
Browse files Browse the repository at this point in the history
  • Loading branch information
simulot committed Nov 17, 2024
1 parent 1861b45 commit 4745cf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adapters/googlePhotos/googlephotos.go
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ func (to *Takeout) handleDir(ctx context.Context, dir string, gOut chan *assets.

// makeAsset makes a localAssetFile based on the google metadata
func (to *Takeout) makeAsset(_ context.Context, dir string, f *assetFile, md *metadata.Metadata) *assets.Asset {
file := filepath.Join(dir, f.base)
file := path.Join(dir, f.base)
a := &assets.Asset{
FileName: file, // File as named in the archive
FileSize: f.length,
Expand Down

0 comments on commit 4745cf3

Please sign in to comment.