matrix-public-archive/shared
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
..
lib Fix `18+` false positives with NSFW check (#279) 2023-06-29 18:58:53 -05:00
viewmodels Indicate when the room was set to `world_readable` and by who (#278) 2023-06-28 20:29:49 -05:00
views Indicate when the room was set to `world_readable` and by who (#278) 2023-06-28 20:29:49 -05:00
.eslintrc.json Stop restarting server when the client bundle updates 2022-02-15 17:30:30 -06:00
hydrogen-vm-render-script.js Indicate when the room was set to `world_readable` and by who (#278) 2023-06-28 20:29:49 -05:00
room-directory-vm-render-script.js Add safe search filter for NSFW rooms (#208) 2023-05-03 04:45:33 -05:00