diff --git a/daemon.py b/daemon.py index 52979332..232f64ed 100644 --- a/daemon.py +++ b/daemon.py @@ -3773,7 +3773,8 @@ class PubServer(BaseHTTPRequestHandler): actorJson['discoverable'] = False actorChanged = True if not actorJson['@context'][2].get('orgSchema'): - actorJson['@context'][2]['orgSchema'] = 'toot:orgSchema' + actorJson['@context'][2]['orgSchema'] = \ + 'toot:orgSchema' actorChanged = True if not actorJson['@context'][2].get('skills'): actorJson['@context'][2]['skills'] = 'toot:skills' @@ -3835,6 +3836,9 @@ class PubServer(BaseHTTPRequestHandler): if not skillName: skillCtr += 1 continue + if isFiltered(baseDir, nickname, domain, skillName): + skillCtr += 1 + continue skillValue = \ fields.get('skillValue' + str(skillCtr)) if not skillValue: