From 940ebfd75f0af1b08a310413dc1fada8a46151ed Mon Sep 17 00:00:00 2001 From: FatherHal <95137430+FatherHal@users.noreply.github.com> Date: Thu, 2 Dec 2021 14:21:47 -0700 Subject: [PATCH 1/3] Update snappy_Drama.txt --- snappy_Drama.txt | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/snappy_Drama.txt b/snappy_Drama.txt index cb08a3048..9b2a3b1d4 100644 --- a/snappy_Drama.txt +++ b/snappy_Drama.txt @@ -2728,4 +2728,26 @@ Literally call your ISP and ask them to disconnect your internet, retard faggot. {[para]}

NIGGER

{[para]} -fuck you stupid fucking nigger faggot eat shit and die kys \ No newline at end of file +fuck you stupid fucking nigger faggot eat shit and die kys +{[para]} +WTF man. I opened his website started reading and ... he has lost it. He is just too shizzo. I literally am browsing /pol/ everyday and was a commie before and can usually box a person's belief system in some place of the political compass, but with carp? He is a far-shizo. Like he is literally a commie, pro-tranny, pro-globohomo, anti-globohomo, green, but also anarhist, pro-journalists' freedoms, but also you should not listen to the journous and turn off the media .... freedom of choice except for the vaxxine..... + +I mean I guess i can box him in the neo-green anarcho-tyranny polical belief system, but also with a shit ton of shizo shit. + +I wish I had access to the shit he is smoking instead of taking meds. +{[para]} +I'm gonna keep posting this until I get it through your head. + +Wearing a condom during sex doesn't mean you're having sex. You're literally fucking a plastic bag, your dick isn't actually touching the vagina. If you've had sex with hundreds of women but each and every time you wore a condom you would still be a virgin since your dick never made contact with the vagina. It's literally the softcore version of a chastity cage, imagine cucking yourself before putting your dick inbetween some nasty roastie curtains. Imagine sticking your dick inside a girl and still being a virgin, kek. +{[para]} +A man sitting in the back center seat of a public bus is a recognized high rank in Satan's kingdom. Men on either side of the center seat are a lower rank but likely higher than others on the bus; they will not sit in the center seat when it is empty. + +{[para]} +pls ping @Dad if u want a quote added, not me + +love u +{[para]} +I punched her in the face. She was a disgusting person to look at and smelled, and she's obviously an entitled, ignorant redneck. It was easy, because she kept saying 'I'm doing a PhD, I'm doing a PhD!', and I just kept replying, "Yes, we all know that, but what are you doing? What is your degree in? Are you going to get another one?" She kept saying "I'm doing a PhD" over and over. + +And in the end I walked out and said, "Enjoy the rest of your stay here, redneck." +{[para]} From be23c8887ec1755eab6aa94bc119f2b6a6ee4f4e Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 3 Dec 2021 18:59:00 +0200 Subject: [PATCH 2/3] fsdsdf --- files/routes/settings.py | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/files/routes/settings.py b/files/routes/settings.py index 9b313b6df..9244820a1 100644 --- a/files/routes/settings.py +++ b/files/routes/settings.py @@ -489,11 +489,20 @@ def gumroad(v): data = { 'access_token': GUMROAD_TOKEN, - 'email': v.email } - response = requests.get('https://api.gumroad.com/v2/sales', data=data, timeout=5).json()["sales"] - if len(response) == 0: return {"error": "Email not found"}, 404 + response = [x['email'] for x in requests.get('https://api.gumroad.com/v2/products/tfcvri/subscribers', data=data, timeout=5).json()["subscribers"]] + emails = [] + + for email in response: + if email.endswith("@gmail.com"): + email=email.split('@')[0] + email=email.split('+')[0] + email=email.replace('.','').replace('_','') + email=f"{email}@gmail.com" + emails.append(email) + + if v.email not in emails: return {"error": "Email not found"}, 404 response = response[0] tier = tiers[response["variants_and_quantity"]] From b1e628ce96d380c7d9a3ca2dbff20e48253210ca Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 3 Dec 2021 19:02:34 +0200 Subject: [PATCH 3/3] dfsdfs --- files/routes/comments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/comments.py b/files/routes/comments.py index 18fbae6fa..b0f6131d9 100644 --- a/files/routes/comments.py +++ b/files/routes/comments.py @@ -45,7 +45,7 @@ def post_pid_comment_cid(cid, pid=None, anything=None, v=None): g.db.add(notif) g.db.commit() - if comment.post and comment.post.club and not (v and (v.paid_dues or v.id in [post.author_id, comment.post.author_id])): abort(403) + if comment.post and comment.post.club and not (v and (v.paid_dues or v.id in [comment.author_id, comment.post.author_id])): abort(403) if not comment.parent_submission and not (v and (comment.author.id == v.id or comment.sentto == v.id)) and not (v and v.admin_level > 1) : abort(403)