commit 83808172c6cb94cb65c6b1e9cc22f6bc4c556fa5 parent 099002715d30af646d4582ac2b14322dae3f04d9 Author: Louis Burda <quent.burda@gmail.com> Date: Thu, 12 Jan 2023 22:56:55 +0100 fixup! Only write to index files on data_save where necessary Diffstat:
M | src/data.c | | | 2 | ++ |
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/src/data.c b/src/data.c @@ -148,6 +148,8 @@ tracks_save(struct tag *tag) fprintf(file, "%s\n", track->name); } + tag->index_dirty = false; + fclose(file); free(index_path); }