Skip to content

Commit dd4467c

Browse files
committed
Fix verify_type=False bug (#483)
1 parent 47c5d92 commit dd4467c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flask_jwt_extended/view_decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def verify_jwt_in_request(
4747
fresh: bool = False,
4848
refresh: bool = False,
4949
locations: LocationType = None,
50-
verify_type: bool = False,
50+
verify_type: bool = True,
5151
) -> Optional[Tuple[dict, dict]]:
5252
"""
5353
Verify that a valid JWT is present in the request, unless ``optional=True`` in

0 commit comments

Comments
 (0)