diff options
author | chriszero <zerov83@gmail.com> | 2015-02-16 20:26:13 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-02-16 20:26:13 +0100 |
commit | 4a86011372c06315b2796f2f4e82c7801027453e (patch) | |
tree | 830a2987e3d46b3ba47550dd685d894b40a3ee17 /Plexservice.cpp | |
parent | 6255bbe09625828312e08835bb30d5822d600e46 (diff) | |
download | vdr-plugin-plex-4a86011372c06315b2796f2f4e82c7801027453e.tar.gz vdr-plugin-plex-4a86011372c06315b2796f2f4e82c7801027453e.tar.bz2 |
Changed Menunavigation, Added Videochannels
Diffstat (limited to 'Plexservice.cpp')
-rw-r--r-- | Plexservice.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Plexservice.cpp b/Plexservice.cpp index b8d41b7..76de898 100644 --- a/Plexservice.cpp +++ b/Plexservice.cpp @@ -126,7 +126,6 @@ std::shared_ptr<MediaContainer> Plexservice::GetSection(std::string section, boo pRequest = CreateRequest(uri); if(putOnStack) { m_vUriStack.push(uri); - std::cout << "Get: " << uri << std::endl; } m_pPlexSession->sendRequest(*pRequest); @@ -152,7 +151,6 @@ std::shared_ptr<MediaContainer> Plexservice::GetLastSection() // discard last one m_vUriStack.pop(); std::string uri = m_vUriStack.top(); - std::cout << "Pop: " << uri << std::endl; return GetSection(uri, false); } return NULL; |