mirror of https://github.com/zulip/zulip.git
settings: Type JITSI_SERVER_URL as being Optional.
We fixed the case when handling `JITSI_SERVER_URL` being `None`, but the
type annotation didn't get updated along with the fix
2f9d4f5a96
Signed-off-by: Zixuan James Li <p359101898@gmail.com>
This commit is contained in:
parent
583116db14
commit
b5f03b9637
|
@ -142,7 +142,7 @@ LOCAL_UPLOADS_DIR: Optional[str] = None
|
|||
MAX_FILE_UPLOAD_SIZE = 25
|
||||
|
||||
# Jitsi Meet video call integration; set to None to disable integration.
|
||||
JITSI_SERVER_URL = "https://meet.jit.si"
|
||||
JITSI_SERVER_URL: Optional[str] = "https://meet.jit.si"
|
||||
|
||||
# GIPHY API key.
|
||||
GIPHY_API_KEY = get_secret("giphy_api_key")
|
||||
|
|
Loading…
Reference in New Issue