commit/StationPlaylist: josephsl: 5.3: Apply same fix from SAM Encoder (play after connecting) to SPL Encoder as well.

  • From: commits-noreply@xxxxxxxxxxxxx
  • To: nvda-addons-commits@xxxxxxxxxxxxx
  • Date: Wed, 12 Aug 2015 23:41:36 -0000

1 new commit in StationPlaylist:

https://bitbucket.org/nvdaaddonteam/stationplaylist/commits/b31318d53baa/
Changeset: b31318d53baa
Branch: stable
User: josephsl
Date: 2015-08-12 23:39:41+00:00
Summary: 5.3: Apply same fix from SAM Encoder (play after connecting) to
SPL Encoder as well.

Affected #: 1 file

diff --git a/addon/globalPlugins/SPLStudioUtils/encoders.py
b/addon/globalPlugins/SPLStudioUtils/encoders.py
index 273dc46..8b1f613 100755
--- a/addon/globalPlugins/SPLStudioUtils/encoders.py
+++ b/addon/globalPlugins/SPLStudioUtils/encoders.py
@@ -468,7 +468,8 @@ class SPLEncoder(Encoder):
except AttributeError:
pass
if self.playAfterConnecting and not connected:
- winUser.sendMessage(SPLWin, SPLMSG, 0,
SPLPlay)
+ if winUser.sendMessage(SPLWin, SPLMSG,
0, SPL_TrackPlaybackStatus) == 0:
+ winUser.sendMessage(SPLWin,
SPLMSG, 0, SPLPlay)
if not connected: connected = True
elif "Unable to connect" in messageCache or "Failed" in
messageCache:
if connected: connected = False

Repository URL: https://bitbucket.org/nvdaaddonteam/stationplaylist/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.

Other related posts:

  • » commit/StationPlaylist: josephsl: 5.3: Apply same fix from SAM Encoder (play after connecting) to SPL Encoder as well. - commits-noreply