This website works better with JavaScript
Home
Explore
Help
Sign In
archive
/
MusareMeteor
mirror of
https://github.com/Musare/MusareMeteor
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Browse Source
Fixed issue where non-logged in users couldn't see any pages.
KrisVos130
9 years ago
parent
9579b2ad99
commit
020c3a53c8
1 changed files
with
2 additions
and
0 deletions
Split View
Show Diff Stats
2
0
app/client/routes.js
+ 2
- 0
app/client/routes.js
View File
@@ -14,6 +14,8 @@ Router.onBeforeAction(function() {
next();
}
});
+ } else {
+ next();
}
});