REEE
Browse files- backend/app.py +1 -1
- frontend/index.html +1 -0
backend/app.py
CHANGED
|
@@ -126,7 +126,7 @@ async def discord_notify(msg):
|
|
| 126 |
if r.status_code >= 400:
|
| 127 |
print(f"Discord webhook failed ({r.status_code}): {r.text}")
|
| 128 |
except Exception as e:
|
| 129 |
-
print(f"Discord webhook error: {e}")
|
| 130 |
|
| 131 |
|
| 132 |
def is_ai_post(post):
|
|
|
|
| 126 |
if r.status_code >= 400:
|
| 127 |
print(f"Discord webhook failed ({r.status_code}): {r.text}")
|
| 128 |
except Exception as e:
|
| 129 |
+
print(f"Discord webhook error: {repr(e)}")
|
| 130 |
|
| 131 |
|
| 132 |
def is_ai_post(post):
|
frontend/index.html
CHANGED
|
@@ -3,6 +3,7 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
| 6 |
<title>Pixif2</title>
|
| 7 |
<link rel="stylesheet" href="style.css">
|
| 8 |
</head>
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<link rel="icon" href="data:;base64,=">
|
| 7 |
<title>Pixif2</title>
|
| 8 |
<link rel="stylesheet" href="style.css">
|
| 9 |
</head>
|