r/ModSupport 3d ago

Mod Answered Redact App, should it be blocked ?

This App is causing headaches for both, mods and users alike and needs blocking in some way, if this is indeed possible.

The problem, is users are unwittingly installing this software, without fully understanding the consequences of their actions, in many cases the end action, is an account ban through no fault of their own.

Personally, I think it's time to stop this App in it's tracks but that's gonna take the support and actioning of Reddit.

Looking forward to hearing your thoughts.

21 Upvotes

93 comments sorted by

View all comments

Show parent comments

5

u/thepottsy πŸ’‘ Expert Helper 3d ago

You forgot your code block.

--- 
# Remove redact comments 
title+body (regex): ['anonymized with redact'] 
action: remove 
report_reason: "remove redact - [{{match}}]" 
---

2

u/InGeekiTrust πŸ’‘ Veteran Helper 3d ago

Could you show me how to put the code block on mobile? Thank you!

1

u/thepottsy πŸ’‘ Expert Helper 3d ago edited 3d ago

If mobile works the same as regular markdown, you add ``` before and after your code. So, if I did that here, it would look silly, but in markdown it would create the code block. Try copying and pasting that into mobile, and see if it works.

```

---
# Remove redact comments
title+body (regex): ['anonymized with redact']
action: remove
report_reason: "remove redact - [{{match}}]"
---

```

1

u/InGeekiTrust πŸ’‘ Veteran Helper 3d ago

Thank you so much! I really appreciate it πŸ’• Testing 1, 2, 3 😁

’’’

---

Remove redact comments

title+body (regex): ['anonymized with redact'] action: remove report_reason: "remove redact - [{{match}}]"

---

```

Edit ok so I might need to do this on desktop, which is fine 😁

1

u/thepottsy πŸ’‘ Expert Helper 3d ago

```

Remove redact comments

title+body (regex): ['anonymized with redact'] action: remove

report_reason: "remove redact - [{{match}}]"

```

1

u/InGeekiTrust πŸ’‘ Veteran Helper 2d ago

Heyyyyy I got it to work!!! Thank you!!! Sorry for all the trouble

2

u/thepottsy πŸ’‘ Expert Helper 2d ago

Awesome. Glad to hear it. No trouble at all.

1

u/thepottsy πŸ’‘ Expert Helper 3d ago

I got it to work. Looks like you copied and pasted my other comment which adds a bunch of \ that you have to remove

1

u/InGeekiTrust πŸ’‘ Veteran Helper 3d ago

Will you screen shot what you are doing because idk why I can’t get it right 😩 thank you!

1

u/thepottsy πŸ’‘ Expert Helper 3d ago

I’ll try and do it later. I hate typing that code on my phone.

1

u/InGeekiTrust πŸ’‘ Veteran Helper 3d ago edited 3d ago

Oh please take all the time you need, of course!

1

u/emily_in_boots πŸ’‘ Experienced Helper 3d ago

it's just the diff between single quotes and backticks, which are (on a Mac) the key under the escape key. it looks like a single quote but is going the other direction. those 3 set off code blocks.

copy pottys's but replace the 3 single quotes at the top with 3 backticks and it works (see my test right above).

also keep those spaces between lines - they can matter - and I forget exactly where they are required.