mirror of https://gitlab.com/bashrc2/epicyon
Validation for searched handles
parent
18ca9aaa32
commit
4992483176
|
@ -2008,7 +2008,11 @@ def html_following_data_list(base_dir: str, nickname: str,
|
||||||
following_list.sort()
|
following_list.sort()
|
||||||
if following_list:
|
if following_list:
|
||||||
for following_address in following_list:
|
for following_address in following_list:
|
||||||
if following_address:
|
if not following_address:
|
||||||
list_str += '<option>@' + following_address + '</option>\n'
|
continue
|
||||||
|
if '@' not in following_address and \
|
||||||
|
'://' not in following_address:
|
||||||
|
continue
|
||||||
|
list_str += '<option>@' + following_address + '</option>\n'
|
||||||
list_str += '</datalist>\n'
|
list_str += '</datalist>\n'
|
||||||
return list_str
|
return list_str
|
||||||
|
|
Loading…
Reference in New Issue