Merge branch 'main' of ssh://code.freedombone.net:2222/bashrc/epicyon into main

main
Bob Mottram 2021-03-15 15:25:54 +00:00
commit ed02dfdc80
1 changed files with 8 additions and 3 deletions

View File

@ -1157,12 +1157,17 @@ def runNotificationsClient(baseDir: str, proxyType: str, httpPrefix: str,
currIndex = currSentIndex currIndex = currSentIndex
speakerJson = \ speakerJson = \
_getSpeakerJsonFromIndex(currTimeline, currIndex) _getSpeakerJsonFromIndex(currTimeline, currIndex)
if not speakerJson:
speakerJson = {}
print('speakerJson: ' + str(speakerJson))
if speakerJson.get('detectedLinks'): if speakerJson.get('detectedLinks'):
if ' ' in keyPress: if ' ' in keyPress:
index = keyPress.split(' ')[1] postIndex = keyPress.split(' ')[1].strip()
if index.isdigit(): print('postIndex: ' + str(postIndex))
if postIndex.isdigit():
speakerJson = \ speakerJson = \
_getSpeakerJsonFromIndex(currTimeline, index) _getSpeakerJsonFromIndex(currTimeline,
int(postIndex))
sayStr = 'Opening web links in browser.' sayStr = 'Opening web links in browser.'
_sayCommand(sayStr, sayStr, originalScreenReader, _sayCommand(sayStr, sayStr, originalScreenReader,
systemLanguage, espeak) systemLanguage, espeak)