mirror of https://github.com/CIRCL/AIL-framework
fix: [Language] Updated the language detector to return a empty list when no language is detected
parent
35502d955f
commit
1d1671c00f
|
@ -493,10 +493,10 @@ class LanguagesDetector:
|
|||
|
||||
def detect(self, content, force_gcld3=False): # TODO detect length between 20-200 ????
|
||||
if not content:
|
||||
return None
|
||||
return []
|
||||
content = _clean_text_to_translate(content, html=True)
|
||||
if not content:
|
||||
return None
|
||||
return []
|
||||
# DEBUG
|
||||
# print('-------------------------------------------------------')
|
||||
# print(content)
|
||||
|
|
Loading…
Reference in New Issue