Commit e2e73581 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

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

parent 4aa73d71
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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,
+1 −0
Original line number Diff line number Diff line
@@ -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,