fix: too many _
parent
a6ca4423ff
commit
736adedf87
|
@ -76,7 +76,7 @@ class ShadowServerFetcher():
|
||||||
if '_' in type_content:
|
if '_' in type_content:
|
||||||
type_content, details_type = type_content.split('_', maxsplit=1)
|
type_content, details_type = type_content.split('_', maxsplit=1)
|
||||||
if '_' in details_type:
|
if '_' in details_type:
|
||||||
details_type, sub = details_type.split('_')
|
details_type, sub = details_type.split('_', maxsplit=1)
|
||||||
return list_type, country, (type_content, details_type, sub)
|
return list_type, country, (type_content, details_type, sub)
|
||||||
return list_type, country, (type_content, details_type)
|
return list_type, country, (type_content, details_type)
|
||||||
return list_type, country, (type_content)
|
return list_type, country, (type_content)
|
||||||
|
|
Loading…
Reference in New Issue