Compare commits

...

2 Commits

Author SHA1 Message Date
PC-Admin
93d3a300a2 update readme 2023-08-28 21:47:16 +08:00
PC-Admin
dfb6c4477c update config var name 2023-08-23 22:01:49 +08:00
2 changed files with 3 additions and 5 deletions

View File

@ -4,9 +4,7 @@
<img src="https://code.glowers.club/PC-Admin/redlight/raw/branch/main/logo/redlight_logo.jpg" width="480" alt="redlight logo">
</p>
_"The red light means STOP!"_
_CAUTION: This software is alpha quality and shouldn't be used by anybody._
_CAUTION: This software is a prototype and is not ready for production use._
An advanced abuse mitigation tool. It's a Synapse module that allows server owners to either run a "redlight server", or to act as a "redlight client" to prevent their own users from accessing abusive rooms. It's designed to block child sexual abuse material (CSAM) and other abusive content on the Matrix network.
@ -42,7 +40,7 @@ This project is licensed under the MIT License.
## Contributing
We warmly welcome contributors who are interested in improving Matrix Lantern. Whether you're fixing bugs, improving documentation, or proposing new features, your efforts are greatly appreciated. Please ensure that new contributions follow our [Style Guide](./style_guide.md).
We warmly welcome contributors who are interested in improving Redlight. Whether you're fixing bugs, improving documentation, or proposing new features, your efforts are greatly appreciated. Please ensure that new contributions follow our [Style Guide](./style_guide.md).
## Acknowledgements

View File

@ -33,7 +33,7 @@ class SourceDataManager:
self._source_repo_url = config.get("redlight_source_repo_url", "")
self._git_token = config.get("redlight_git_token", "")
self._source_list_file_path = config.get("redlight_source_list_file_path", "dist/summaries.json")
self._filtered_tags = config.get("filtered_tags", [])
self._filtered_tags = config.get("redlight_filtered_tags", [])
self._source_dict = {}
self._source_dict_last_update = None
self.update_data()