Fix potential type error when processing Tudou danmaku.
This commit is contained in:
		
							parent
							
								
									da21a8b540
								
							
						
					
					
						commit
						7d623dc857
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -213,10 +213,10 @@ def ReadCommentsTudou2(f, fontsize): | |||
|         try: | ||||
|             c = str(comment['content']) | ||||
|             prop = json.loads(str(comment['propertis']) or '{}') | ||||
|             size = prop.get('size', 1) | ||||
|             size = int(prop.get('size', 1)) | ||||
|             assert size in (0, 1, 2) | ||||
|             size = {0: 0.64, 1: 1, 2: 1.44}[size] * fontsize | ||||
|             pos = prop.get('pos', 3) | ||||
|             pos = int(prop.get('pos', 3)) | ||||
|             assert pos in (0, 3, 4, 6) | ||||
|             yield ( | ||||
|                 int(comment['playat'] * 0.001), int(comment['createtime'] * 0.001), i, c, | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 John Chong
						John Chong