fix: change error code for webapp auth

This commit is contained in:
GareArc 2025-04-11 02:41:02 -04:00
parent 4785c061a9
commit 7a4ec9cf23
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ class UnsupportedFileTypeError(BaseHTTPException):
class WebAppAuthRequiredError(BaseHTTPException):
error_code = "web_auth_required"
error_code = "web_sso_auth_required"
description = "Web app authentication required."
code = 401