fix(cache): return a non cached view when connected

This commit is contained in:
Yassine Doghri 2022-01-23 19:39:17 +00:00
parent 4aa73d71e3
commit e2e735815d
2 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,7 @@ class EpisodeCommentController extends BaseController
// if user is logged in then send to the authenticated activity view
if (can_user_interact()) {
helper('form');
return view('episode/comment', $data);
}
return view('episode/comment', $data, [
'cache' => DECADE,

View File

@ -96,6 +96,7 @@ class PostController extends FediversePostController
// if user is logged in then send to the authenticated activity view
if (can_user_interact()) {
helper('form');
return view('post/post', $data);
}
return view('post/post', $data, [
'cache' => DECADE,