diff options
author | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-08-23 15:30:13 +0000 |
---|---|---|
committer | LarsAC <LarsAC@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-08-23 15:30:13 +0000 |
commit | cc31b63b858a1cb6902fedd6b882cb62e8ad7ba4 (patch) | |
tree | 0aceb13addbb63703d450d31a8aadf66c0c54e68 | |
parent | 98ee6a57138869a8a0756fb3b8b5419258da550f (diff) | |
download | vdr-plugin-muggle-cc31b63b858a1cb6902fedd6b882cb62e8ad7ba4.tar.gz vdr-plugin-muggle-cc31b63b858a1cb6902fedd6b882cb62e8ad7ba4.tar.bz2 |
File tag updates currently disabled
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@116 e10066b5-e1e2-0310-b819-94efdf66514b
-rwxr-xr-x | mugglei.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -181,6 +181,8 @@ void evaluate_file( string filename ) long uid = find_file_in_database( filename );
if( uid >= 0 )
{
+ // currently only update database, do not consider writing changes from the db back
+ /*
// determine modification times in database and on filesystem
time_t db_time = get_db_modification_time( uid );
time_t fs_time = get_fs_modification_time( filename );
@@ -195,6 +197,9 @@ void evaluate_file( string filename ) // file is newer: update db from id3 tags
update_db( uid, filename );
}
+ */
+
+ update_db( uid, filename );
}
else
{
|