diff options
author | methodus <methodus@web.de> | 2012-10-22 14:31:47 +0200 |
---|---|---|
committer | methodus <methodus@web.de> | 2012-10-22 14:31:47 +0200 |
commit | b1c6f21ad8394d5a15ec4eb84e440f09c07f333e (patch) | |
tree | d7338317285697bce86e505a3d3ae1ca1547c9dc /media | |
parent | 2d47656d0dfddea80c04bcf48b3b9c36de784af1 (diff) | |
download | vdr-plugin-upnp-b1c6f21ad8394d5a15ec4eb84e440f09c07f333e.tar.gz vdr-plugin-upnp-b1c6f21ad8394d5a15ec4eb84e440f09c07f333e.tar.bz2 |
Fixed static initialization bug. Fixed linefeed bug
Diffstat (limited to 'media')
-rw-r--r-- | media/mediaManager.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/media/mediaManager.cpp b/media/mediaManager.cpp index a2eeb36..fdfaaed 100644 --- a/media/mediaManager.cpp +++ b/media/mediaManager.cpp @@ -5,8 +5,8 @@ * Author: savop */ -#include "../include/webserver.h" #include "../include/media/mediaManager.h" +#include "../include/webserver.h" #include "../include/pluginManager.h" #include "../include/server.h" #include "../include/parser.h" @@ -196,14 +196,14 @@ bool cMediaManager::UpdateContainerUpdateId(const string& objectID, long int upd StringList cMediaManager::GetSearchCapabilities() const { StringList list; - list.push_back(property::object::KEY_TITLE); - list.push_back(property::object::KEY_CREATOR); - list.push_back(property::object::KEY_DESCRIPTION); - list.push_back(property::object::KEY_LONG_DESCRIPTION); - list.push_back(property::object::KEY_CLASS); - list.push_back(property::object::KEY_DATE); - list.push_back(property::object::KEY_LANGUAGE); - list.push_back(property::resource::KEY_PROTOCOL_INFO); +// list.push_back(property::object::KEY_TITLE); +// list.push_back(property::object::KEY_CREATOR); +// list.push_back(property::object::KEY_DESCRIPTION); +// list.push_back(property::object::KEY_LONG_DESCRIPTION); +// list.push_back(property::object::KEY_CLASS); +// list.push_back(property::object::KEY_DATE); +// list.push_back(property::object::KEY_LANGUAGE); +// list.push_back(property::resource::KEY_PROTOCOL_INFO); return list; } |