Don't show default data tox users
These users have not set a profile name and so are probably not active
This commit is contained in:
parent
3684e93896
commit
e96cae2a55
|
@ -115,7 +115,7 @@ function detect_tox_users {
|
|||
toxctr=0
|
||||
echo '<ol type="square">' >> $TOX_USERS_FILE.new
|
||||
while IFS='' read -r line || [[ -n "$line" ]]; do
|
||||
if [[ $line != "Failed*" ]]; then
|
||||
if [[ $line != "Failed*" && $line != "data "* ]]; then
|
||||
echo " <li>$line</li>" >> $TOX_USERS_FILE.new
|
||||
toxctr=$((toxctr + 1))
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue