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:
Bob Mottram 2016-08-02 22:46:28 +01:00
parent 3684e93896
commit e96cae2a55
No known key found for this signature in database
GPG Key ID: 0452CC7CEA982E38
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ function detect_tox_users {
toxctr=0 toxctr=0
echo '<ol type="square">' >> $TOX_USERS_FILE.new echo '<ol type="square">' >> $TOX_USERS_FILE.new
while IFS='' read -r line || [[ -n "$line" ]]; do 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 echo " <li>$line</li>" >> $TOX_USERS_FILE.new
toxctr=$((toxctr + 1)) toxctr=$((toxctr + 1))
fi fi