diff options
author | chriszero <zerov83@gmail.com> | 2015-02-21 18:55:14 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-02-21 18:55:14 +0100 |
commit | 7b4822f878b8cca33839bc23d54157a72a97456d (patch) | |
tree | 6294b18bb6a2a0a6ae317f862c29de26a77fb13d | |
parent | 36dd0bec49224987219e1e4ba57a1443202694fd (diff) | |
download | vdr-plugin-plex-7b4822f878b8cca33839bc23d54157a72a97456d.tar.gz vdr-plugin-plex-7b4822f878b8cca33839bc23d54157a72a97456d.tar.bz2 |
Suspress playoffset if played via app.
-rw-r--r-- | plex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -390,7 +390,7 @@ bool cMyPlugin::SetupParse(const char *name, const char *value) void cMyPlugin::PlayFile(plexclient::Video Vid) { isyslog("[plex]: play file '%s'\n", Vid.m_sKey.c_str()); - if(Vid.m_lViewoffset > 0 ) { + if(Vid.m_iMyPlayOffset != 0 && Vid.m_lViewoffset > 0 ) { cString message = cString::sprintf(tr("To start from %ld minutes, press Ok."), Vid.m_lViewoffset / 60000); eKeys response = Skins.Message(eMessageType::mtInfo, message, 5); if(response == kOk) { |