mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-10-31 06:03:51 +01:00 
			
		
		
		
	2019-01-10 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'pypad_xds.py' that threw an exception when processing a PAD update originated from a null log.
This commit is contained in:
		| @@ -18361,3 +18361,6 @@ | ||||
| 	segfault when playing an event in a null log. | ||||
| 2019-01-10 Fred Gleason <fredg@paravelsystems.com> | ||||
| 	* Fixed a typo in 'apis/pypad/scripts/pypad_xmpad.exemplar'. | ||||
| 2019-01-10 Fred Gleason <fredg@paravelsystems.com> | ||||
| 	* Fixed a bug in 'pypad_xds.py' that threw an exception when | ||||
| 	processing a PAD update originated from a null log. | ||||
|   | ||||
| @@ -64,7 +64,7 @@ def ProcessPad(update): | ||||
|     while(True): | ||||
|         section='Udp'+str(n) | ||||
|         try: | ||||
|             if update.shouldBeProcessed(section) and update.hasPadType(pypad.TYPE_NOW): | ||||
|             if update.shouldBeProcessed(section) and update.hasPadType(pypad.TYPE_NOW) and update.hasService(): | ||||
|                 packet='0:'+update.serviceProgramCode()+':'+update.config().get(section,'IsciPrefix')+FilterField(update.padField(pypad.TYPE_NOW,pypad.FIELD_EXTERNAL_EVENT_ID))+':*' | ||||
|                 try: | ||||
|                     # | ||||
|   | ||||
		Reference in New Issue
	
	Block a user