Parcourir la source

Add LDP.Container to conditions for a LDP-RS.

Stefano Cossu il y a 7 ans
Parent
commit
0eedf022ba
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. 4 1
      lakesuperior/migrator.py

+ 4 - 1
lakesuperior/migrator.py

@@ -186,7 +186,10 @@ class Migrator:
                     rsp.headers.get('link')):
                 if (
                         link.get('rel') == 'type'
-                        and link.get('url') == str(nsc['ldp'].RDFSource)):
+                        and (
+                            link.get('url') == str(nsc['ldp'].RDFSource)
+                            or link.get('url') == str(nsc['ldp'].Container)
+                        ):
                     # Resource is an LDP-RS.
                     ldp_type = 'ldp_rs'
                     break