diff --git a/app/controllers/v1/users_controller.rb b/app/controllers/v1/users_controller.rb
index 0207691aacbf8f25d6a9b0ccc4006dad7d70181b..8183e2304ab19e64362641582d9c6503dae79065 100644
--- a/app/controllers/v1/users_controller.rb
+++ b/app/controllers/v1/users_controller.rb
@@ -121,6 +121,7 @@ class V1::UsersController < ApplicationController
     is_current = (@user.id == current_user.id) unless current_user.nil?
     return render status: :bad_request unless type.in? %w(User Collection)
     w = @user.following(type, is_current)
+    return render json: w, include: '*.owner', root: 'follows', status: :ok if type=="Collection"
     render json: w, root: 'follows', status: :ok
   end