mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
Merge pull request #1174 from capensisma/patch-1
Fixed url not defined in postPages[post.url] line 53
This commit is contained in:
commit
773d2bdd6f
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ Meteor.startup(function() {
|
|||
sort: params.options.sort
|
||||
});
|
||||
posts.forEach(function(post) {
|
||||
postPages[url] = {page: post.getPageUrl(), lastmod: post.postedAt, changefreq: "daily"};
|
||||
postPages[post.url] = {page: post.getPageUrl(), lastmod: post.postedAt, changefreq: "daily"};
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue