mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix URL validation of empty string
This commit is contained in:
parent
3861e84f89
commit
05e294fc81
@ -494,7 +494,11 @@ class CustomFieldInstanceSerializer(serializers.ModelSerializer):
|
||||
"""
|
||||
data = super().validate(data)
|
||||
field: CustomField = data["field"]
|
||||
if field.data_type == CustomField.FieldDataType.URL:
|
||||
if (
|
||||
field.data_type == CustomField.FieldDataType.URL
|
||||
and data["value"] is not None
|
||||
and len(data["value"]) > 0
|
||||
):
|
||||
URLValidator()(data["value"])
|
||||
return data
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user