correctly fix time_now
All checks were successful
Publish latest version / build (push) Successful in 33s
All checks were successful
Publish latest version / build (push) Successful in 33s
This commit is contained in:
parent
8536895997
commit
080f023835
1 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
from datetime import datetime
|
from datetime import UTC, datetime
|
||||||
from os import listdir, utime
|
from os import listdir, utime
|
||||||
from os import path as os_path
|
from os import path as os_path
|
||||||
from os import remove as os_remove
|
from os import remove as os_remove
|
||||||
|
@ -98,8 +98,12 @@ def exist_post(file_id: int) -> float | None:
|
||||||
|
|
||||||
|
|
||||||
def time_now() -> float:
|
def time_now() -> float:
|
||||||
"""get current time based on timezone"""
|
"""get current time based on timezone without being timezone aware"""
|
||||||
return datetime.now(timezone(session[Config._session_timezone])).timestamp()
|
now = datetime.now(UTC).replace(tzinfo=None)
|
||||||
|
return (
|
||||||
|
now.timestamp()
|
||||||
|
+ timezone(session[Config._session_timezone]).utcoffset(now).total_seconds()
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def create_post(file_id: int, content: str) -> bool:
|
def create_post(file_id: int, content: str) -> bool:
|
||||||
|
|
Loading…
Reference in a new issue