[rygel/wip/lms-tizen: 376/384] lms: fix dates to videos



commit ed50737772272872a61d3c0a0b4a4f490cc34c21
Author: Alexander Kanavin <alex kanavin gmail com>
Date:   Wed Mar 12 17:24:22 2014 +0200

    lms: fix dates to videos

 src/plugins/lms/rygel-lms-all-videos.vala |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/plugins/lms/rygel-lms-all-videos.vala b/src/plugins/lms/rygel-lms-all-videos.vala
index d28cb96..7f23be5 100644
--- a/src/plugins/lms/rygel-lms-all-videos.vala
+++ b/src/plugins/lms/rygel-lms-all-videos.vala
@@ -25,7 +25,7 @@ using Sqlite;
 
 public class Rygel.LMS.AllVideos : Rygel.LMS.CategoryContainer {
     private static const string SQL_ALL =
-        "SELECT videos.id, title, artist, length, path, dtime, size, dlna_profile, dlna_mime " +
+        "SELECT videos.id, title, artist, length, path, mtime, size, dlna_profile, dlna_mime " +
         "FROM videos, files " +
         "WHERE videos.id = files.id " +
         "LIMIT ? OFFSET ?;";
@@ -36,7 +36,7 @@ public class Rygel.LMS.AllVideos : Rygel.LMS.CategoryContainer {
         "WHERE videos.id = files.id;";
 
     private static const string SQL_FIND_OBJECT =
-        "SELECT videos.id, title, artist, length, path, dtime, size, dlna_profile, dlna_mime " +
+        "SELECT videos.id, title, artist, length, path, mtime, size, dlna_profile, dlna_mime " +
         "FROM videos, files " +
         "WHERE files.id = ? AND videos.id = files.id;";
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]