Преглед изворни кода

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

Stefano Cossu пре 7 година
родитељ
комит
0eedf022ba
1 измењених фајлова са 4 додато и 1 уклоњено
  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