Skip to content

Commit

Permalink
[facebook] ignore generic browser title
Browse files Browse the repository at this point in the history
  • Loading branch information
naisanzaa committed Dec 17, 2024
1 parent 4969e1e commit d33faa3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions automon/integrations/facebook/groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,10 @@ def title(self) -> str:
logger.error(self._title)
return ''

if 'www.facebook.com' in self._title:
logger.error(self._title)
return ''

if self._title:
self._title = self._title.split('|')
self._title = self._title[0]
Expand Down

0 comments on commit d33faa3

Please sign in to comment.