Compare commits

..
3 Commits
Author SHA1 Message Date
YoursFunny 5483855de8 fix webhook set as false in compose yaml 2025-12-18 14:59:12 +08:00
YoursFunny 052163084b change to x.com in url template 2025-12-17 17:24:22 +08:00
YoursFunny cdee105c60 bump deps version 2025-12-17 17:23:20 +08:00
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ ADMIN = [int(i) for i in os.getenv("BOT_ADMIN", "").split(",") if i]
PIXIV_REFRESH_TOKEN = os.getenv("PIXIV_REFRESH_TOKEN")
WEBHOOK = os.getenv("WEBHOOK", False)
WEBHOOK = os.getenv("WEBHOOK").strip().lower() in ("true", "yes", "1")
if WEBHOOK:
WEBHOOK_LISTEN = os.getenv("WEBHOOK_LISTEN", "0.0.0.0")
WEBHOOK_PORT = int(os.getenv("WEBHOOK_PORT", 8443))
+2 -2
View File
@@ -1,4 +1,4 @@
python-telegram-bot[webhooks]~=22.3
python-telegram-bot[webhooks]~=22.5
httpx[http2]~=0.27
uvloop~=0.21; sys_platform != 'win32'
uvloop~=0.22; sys_platform != 'win32'
async-pixiv @ git+https://github.com/TheFunny/async-pixiv@main
+2 -2
View File
@@ -84,7 +84,7 @@ class Tweet:
@cached_property
def url(self) -> str:
return f"https://twitter.com/{self._author_id}/status/{self._id}"
return f"https://x.com/{self._author_id}/status/{self._id}"
@property
def author(self) -> str:
@@ -92,7 +92,7 @@ class Tweet:
@cached_property
def author_url(self) -> str:
return f"https://twitter.com/{self._author_id}"
return f"https://x.com/{self._author_id}"
@property
def text(self) -> str: