瀏覽代碼

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