Update mediaflow_proxy/main.py
Browse files- mediaflow_proxy/main.py +3 -3
mediaflow_proxy/main.py
CHANGED
|
@@ -56,9 +56,9 @@ async def real_link():
|
|
| 56 |
s = 'https:'
|
| 57 |
for c in schema:
|
| 58 |
s += d[c] if c in d else c
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
return s
|
| 63 |
|
| 64 |
@app.get("/favicon.ico")
|
|
|
|
| 56 |
s = 'https:'
|
| 57 |
for c in schema:
|
| 58 |
s += d[c] if c in d else c
|
| 59 |
+
response = await client.head(s)
|
| 60 |
+
print(response)
|
| 61 |
+
print(response.headers)
|
| 62 |
return s
|
| 63 |
|
| 64 |
@app.get("/favicon.ico")
|