sdfdsf
This commit is contained in:
parent
70e8a0de27
commit
d1c2d7f7a7
2 changed files with 3 additions and 3 deletions
|
@ -23,7 +23,7 @@ CATBOX_KEY = environ.get("CATBOX_KEY").strip()
|
|||
|
||||
with open("snappy.txt", "r") as f: snappyquotes = f.read().split("{[para]}")
|
||||
|
||||
if site == 'pcmemes.net': snappyquotes = [x for x in snappyquotes if 'drama' not in x]
|
||||
if site == 'pcmemes.net' or site == 'ashithole.com': snappyquotes = [x for x in snappyquotes if 'drama' not in x.lower()]
|
||||
|
||||
@app.post("/toggle_club/<pid>")
|
||||
@auth_required
|
||||
|
@ -865,7 +865,7 @@ def submit_post(v):
|
|||
n = Notification(comment_id=c_jannied.id, user_id=v.id)
|
||||
g.db.add(n)
|
||||
|
||||
if "rama" in request.host or "pcmemes.net" in request.host or new_post.url:
|
||||
if "rama" in request.host or "pcmemes.net" in request.host or "shithole" in request.host or new_post.url:
|
||||
new_post.comment_count = 1
|
||||
g.db.add(new_post)
|
||||
|
||||
|
|
|
@ -124,7 +124,7 @@
|
|||
{% endif %}
|
||||
|
||||
|
||||
{% if 'rama' not in request.host %}
|
||||
{% if 'rama' not in request.host and 'pcmemes' not in request.host and 'shithole' not in request.host %}
|
||||
<script>
|
||||
function poll_vote(cid) {
|
||||
{% if v %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue