mirror of
				https://github.com/MCV-Software/TWBlue.git
				synced 2025-11-03 21:37:05 +00:00 
			
		
		
		
	Added exception handlers.
This commit is contained in:
		@@ -45,16 +45,22 @@ def find_next_reply(id, listItem):
 | 
				
			|||||||
def is_audio(tweet,force=False):
 | 
					def is_audio(tweet,force=False):
 | 
				
			||||||
 if force == False and 'is_audio' in tweet:
 | 
					 if force == False and 'is_audio' in tweet:
 | 
				
			||||||
  return tweet['is_audio']
 | 
					  return tweet['is_audio']
 | 
				
			||||||
 | 
					 try:
 | 
				
			||||||
  if len(tweet["entities"]["hashtags"]) > 0:
 | 
					  if len(tweet["entities"]["hashtags"]) > 0:
 | 
				
			||||||
   for i in tweet["entities"]["hashtags"]:
 | 
					   for i in tweet["entities"]["hashtags"]:
 | 
				
			||||||
    if i["text"] == "audio":
 | 
					    if i["text"] == "audio":
 | 
				
			||||||
     tweet['is_audio']=True
 | 
					     tweet['is_audio']=True
 | 
				
			||||||
     return True
 | 
					     return True
 | 
				
			||||||
 | 
					 except:
 | 
				
			||||||
 | 
					  log.exception("Exception while executing is_audio hashtag algorithm")
 | 
				
			||||||
 | 
					 try:
 | 
				
			||||||
  if config.app['app-settings']['use_modern_audio_algo']:
 | 
					  if config.app['app-settings']['use_modern_audio_algo']:
 | 
				
			||||||
   for u in find_urls(tweet):
 | 
					   for u in find_urls(tweet):
 | 
				
			||||||
    if url_is_audio(u):
 | 
					    if url_is_audio(u):
 | 
				
			||||||
     tweet['is_audio']=True
 | 
					     tweet['is_audio']=True
 | 
				
			||||||
     return True
 | 
					     return True
 | 
				
			||||||
 | 
					 except:
 | 
				
			||||||
 | 
					  log.exception("Exception while executing is_audio Codeofdusk algorithm.")
 | 
				
			||||||
 tweet['is_audio']=False
 | 
					 tweet['is_audio']=False
 | 
				
			||||||
 return False
 | 
					 return False
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user