diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-01-12 22:56:55 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-01-12 22:56:55 +0100 |
| commit | 83808172c6cb94cb65c6b1e9cc22f6bc4c556fa5 (patch) | |
| tree | e5791a928637a32fba6eba6799d1ac296ae6b9cb /src | |
| parent | 099002715d30af646d4582ac2b14322dae3f04d9 (diff) | |
| download | tmus-83808172c6cb94cb65c6b1e9cc22f6bc4c556fa5.tar.gz tmus-83808172c6cb94cb65c6b1e9cc22f6bc4c556fa5.zip | |
fixup! Only write to index files on data_save where necessary
Diffstat (limited to 'src')
| -rw-r--r-- | src/data.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -148,6 +148,8 @@ tracks_save(struct tag *tag) fprintf(file, "%s\n", track->name); } + tag->index_dirty = false; + fclose(file); free(index_path); } |
