From ef651dbc0ada56c0b8e2f435083b4ffbd7bfb758 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Thu, 19 Oct 2023 11:20:22 +0100 Subject: [PATCH] Fix replace_files after other updates --- app/replace_files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/replace_files.py b/app/replace_files.py index e8e9872..eeab760 100755 --- a/app/replace_files.py +++ b/app/replace_files.py @@ -261,7 +261,7 @@ def process_track(src, dst, title, artist, bitrate): shutil.move(src, new_path) # Update track metadata - set_track_metadata(session, track) + set_track_metadata(track) main()