diff --git a/files/helpers/get.py b/files/helpers/get.py index b6e88524c..5679f4953 100644 --- a/files/helpers/get.py +++ b/files/helpers/get.py @@ -353,7 +353,7 @@ def get_sub_by_name(sub:str, v:Optional[User]=None, graceful=False) -> Optional[ else: abort(404) return sub -@cache.memoize() +@cache.memoize(timeout=3600) def get_profile_picture(identifier:Union[int, str]) -> str: if isinstance(identifier, int): x = get_account(identifier, graceful=True)