Skip to content

Commit

Permalink
Fix: report the xmp file name in the log
Browse files Browse the repository at this point in the history
  • Loading branch information
simulot committed May 31, 2024
1 parent c98b3f9 commit dc65281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/files/localassets.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func (la *LocalAssetBrowser) checkSidecar(ctx context.Context, f *browser.LocalA
FileName: path.Join(dir, e.Name()),
OnFSsys: true,
}
la.log.Record(ctx, fileevent.AnalysisAssociatedMetadata, nil, f.FileName, "main", f.FileName)
la.log.Record(ctx, fileevent.AnalysisAssociatedMetadata, nil, path.Join(dir, e.Name()), "main", f.FileName)
return true
}
}
Expand Down

0 comments on commit dc65281

Please sign in to comment.