2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 19:15:41 +00:00

Logic fix

This commit is contained in:
Oliver Walters
2025-04-21 04:14:33 +00:00
parent 79dad13328
commit 47e47b4bde

View File

@ -38,7 +38,7 @@ class InvenTreeRestURLField(RestURLField):
if not strict_urls and data is not empty and data is not None:
data = str(data).strip()
if '://' not in data:
if data and '://' not in data:
# Validate as if there were a schema provided
data = 'http://' + data