Browse Source

Fix the populate script

It was inverting the private field on links
Trevor Elliott 4 years ago
parent
commit
c81a263b56
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/populate.py

+ 1 - 1
scripts/populate.py

@@ -28,7 +28,7 @@ def main():
             url=l["href"],
             name=l["description"],
             description=l["extended"],
-            private=l["shared"] == "yes",
+            private=l["shared"] == "no",
             tags=l["tags"].split(),
             created=time,
         )