* Fix some issues with ampersand escaping.
* Improve image date/camera metadata handling by not storing a date if none exists. * Add preliminary TiVo video serving support.
This commit is contained in:
@ -425,7 +425,9 @@ inotify_insert_directory(int fd, char *name, const char * path)
|
||||
if( strcmp(e->d_name, ".") == 0 ||
|
||||
strcmp(e->d_name, "..") == 0 )
|
||||
continue;
|
||||
esc_name = modifyString(strdup(e->d_name), "&", "&", 0);
|
||||
esc_name = escape_tag(e->d_name);
|
||||
if( !esc_name )
|
||||
esc_name = strdup(e->d_name);
|
||||
asprintf(&path_buf, "%s/%s", path, e->d_name);
|
||||
if( e->d_type == DT_DIR )
|
||||
{
|
||||
|
Reference in New Issue
Block a user