From 5bc9ff39ac4f4a4b0d43066bce9cfde0397f3388 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Mon, 12 Dec 2022 07:32:35 -0700 Subject: Fix static file URLs --- api/schemas.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'api/schemas.py') diff --git a/api/schemas.py b/api/schemas.py index 97b8169..59f9a12 100644 --- a/api/schemas.py +++ b/api/schemas.py @@ -35,8 +35,8 @@ class Account(Schema): note: str avatar: str avatar_static: str - header: str - header_static: str + header: str | None = Field(...) + header_static: str | None = Field(...) locked: bool fields: list[AccountField] emojis: list[CustomEmoji] -- cgit v1.2.3