Sfoglia il codice sorgente

Fix missing slash in UID when POSTing to root. (#26)

Stefano Cossu 7 anni fa
parent
commit
3b0c77f57b
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      lakesuperior/model/ldp_factory.py

+ 1 - 1
lakesuperior/model/ldp_factory.py

@@ -201,7 +201,7 @@ class LdpFactory:
             raise ValueError('Slug cannot start with a slash.')
         # Shortcut!
         if not path and parent_uid == '/':
-            return split_if_legacy(str(uuid4()))
+            return '/' + split_if_legacy(str(uuid4()))
 
         if not parent_uid.startswith('/'):
             raise ValueError('Invalid parent UID: {}'.format(parent_uid))