Skip to content

Commit 95b363d

Browse files
authored
Filter out internal tags in collection creation, fixes TryGhost#35
1 parent ec01886 commit 95b363d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.eleventy.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ module.exports = function(config) {
150150
collection = await api.tags
151151
.browse({
152152
include: "count.posts",
153-
limit: "all"
153+
limit: "all",
154+
filter: "visibility:public"
154155
})
155156
.catch(err => {
156157
console.error(err);

0 commit comments

Comments
 (0)