Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/azatoth/minidlna.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Maggard <jmaggard@users.sourceforce.net>2012-01-31 05:17:00 +0400
committerJustin Maggard <jmaggard@users.sourceforce.net>2012-01-31 05:17:00 +0400
commite135ca88a7f64a3765e6489ac6bd10f1d78d92f8 (patch)
treef8b1a3b23661452384d6d6b1fee222a46062e5ef
parent02507155187ddd84de4eab92e98d1e3337979b49 (diff)
* Fix inotify detection of caption file removal.
-rw-r--r--inotify.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/inotify.c b/inotify.c
index 5dc0962..e7a2cfe 100644
--- a/inotify.c
+++ b/inotify.c
@@ -521,6 +521,11 @@ inotify_remove_file(const char * path)
sqlite_int64 detailID;
int rows, playlist;
+ if( ends_with(path, ".srt") )
+ {
+ rows = sql_exec(db, "DELETE from CAPTIONS where PATH = '%q'", path);
+ return rows;
+ }
/* Invalidate the scanner cache so we don't insert files into non-existent containers */
valid_cache = 0;
playlist = is_playlist(path);