Skip to content

Commit

Permalink
Actually make old timelines show for non-logged-in like they should
Browse files Browse the repository at this point in the history
  • Loading branch information
RedEnchilada committed Feb 19, 2015
1 parent 4723319 commit f60ce92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion actions/conversation.php
Expand Up @@ -125,7 +125,7 @@ function showContent()
{
$user = common_current_user();

if (!empty($user) && $user->conversationTree()) {
if (empty($user) || $user->conversationTree()) {
$nl = new ConversationTree($this->notices, $this);
} else {
$nl = new FullThreadedNoticeList($this->notices, $this, $this->userProfile);
Expand Down
2 changes: 1 addition & 1 deletion actions/public.php
Expand Up @@ -92,7 +92,7 @@ function prepare($args)

$user = common_current_user();

if (!empty($user) && $user->streamModeOnly()) {
if (empty($user) || $user->streamModeOnly()) {
$stream = new PublicNoticeStream($this->userProfile, $this->images);
} else {
$stream = new ThreadingPublicNoticeStream($this->userProfile, $this->images);
Expand Down

0 comments on commit f60ce92

Please sign in to comment.