mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-16 23:34:40 -05:00
add stuff
This commit is contained in:
parent
2008aabb74
commit
0082765bf6
1 changed files with 7 additions and 7 deletions
|
@ -667,14 +667,14 @@ function extractQueryFromUpsellMessage(message) {
|
|||
<!-- self harm -->
|
||||
<%
|
||||
const searchStrings = [
|
||||
"suicide", "self harm", "self-harm", "support", "murder", "how to murder", "kill myself",
|
||||
"end my life", "depressed", "depression", "lonely",
|
||||
"hurt myself", "selfharm", "selfharm", "dying", "want to die",
|
||||
"kill", "die", "family problems", "family issues", "abuse",
|
||||
"domestic violence", "abusive parents", "family conflict",
|
||||
"estranged", "disowned", "run away", "runaway", ".full stop punctuation."
|
||||
"\\bsuicide\\b", "\\bself harm\\b", "\\bself-harm\\b", "\\bsupport\\b", "\\bmurder\\b",
|
||||
"\\bhow to murder\\b", "\\bkill myself\\b", "\\bend my life\\b", "\\bdepressed\\b",
|
||||
"\\bdepression\\b", "\\blonely\\b", "\\bhurt myself\\b", "\\bselfharm\\b", "\\bdying\\b",
|
||||
"\\bwant to die\\b", "\\bkill\\b", "\\bdie\\b", "\\bfamily problems\\b", "\\bfamily issues\\b",
|
||||
"\\babuse\\b", "\\bdomestic violence\\b", "\\babusive parents\\b", "\\bfamily conflict\\b",
|
||||
"\\bestranged\\b", "\\bdisowned\\b", "\\brun away\\b", "\\brunaway\\b", "\\b.full stop punctuation.\\b"
|
||||
];
|
||||
if (searchStrings.some(str => q.toLowerCase().includes(str))) {
|
||||
if (searchStrings.some(str => new RegExp(str, 'i').test(q))) {
|
||||
%>
|
||||
|
||||
<div class="container">
|
||||
|
|
Loading…
Reference in a new issue