i don't remember

This commit is contained in:
Gabe Farrell 2026-04-09 00:39:59 -04:00
parent c7d6a088ed
commit 4324de1271
6 changed files with 98 additions and 48 deletions

View file

@ -220,9 +220,10 @@ func tagWithBeets(path, mbid string) error {
defer os.Remove(logPath)
args := []string{"import", "-Cq", "-l", logPath}
if mbid != "" {
args = append(args, "--search-id", mbid)
}
// passing mbid to beet removed temporarily
// if mbid != "" {
// args = append(args, "--search-id", mbid)
// }
args = append(args, path)
if err := runCmd("beet", args...); err != nil {
return err