Android. Executing a part of TurnSound functionality even if TurnSound is not available.

This commit is contained in:
Vladimir Byko-Ianko 2015-10-20 17:50:58 +03:00
parent abf2bf8c39
commit ab7f3cdb5a

View file

@ -142,11 +142,9 @@ public enum TtsPlayer
public void playTurnNotifications()
{
if (!isValid())
return; // speak() is called while TTS is not ready or could not be initialized.
final String[] turnNotifications = Framework.nativeGenerateTurnSound();
if (turnNotifications != null)
if (turnNotifications != null && isValid())
for (String textToSpeak : turnNotifications)
speak(textToSpeak);
}