Eric Eastwood
|
5d444d5044
|
Rename project from "Matrix Public Archive" to "Matrix Viewer" (#280)
Mentioned in the recent blog post: https://matrix.org/blog/2023/07/what-happened-with-the-archive/#next-steps
The canonical `view.matrix.org` instance is not live yet but this is pre-requisite work for that to happen.
|
2023-07-14 15:52:35 -05:00 |
Eric Eastwood
|
59c9d3180e
|
Fix `18+` false positives with NSFW check (#279)
Was noticing false positives with our test room names like: `planet-1688081266353-room-18`
Before:
```regex
/(\b|_)18+(\b|_)/i
```
After:
```regex
/(\b|_|-|\s|^)18\+(\b|_|-|\s|$)/i
```
|
2023-06-29 18:58:53 -05:00 |
Eric Eastwood
|
a9aa08f24a
|
Catch NSFW rooms with underscores (#231)
`\b` includes `_` which is a bit unexpected since we expect a room that looks like `NSFW_foo` to be caught in safe search
|
2023-05-23 12:29:19 -05:00 |