李帅

1.修复一些bug

......@@ -53,7 +53,7 @@ class ImmerseController extends Controller
$user_id = $request->user()->id;
$user_profile = UserProfile::query()->where('user_id', $user_id)->first();
if ($user_profile->is_vip == UserProfile::NO_VIP || $user_profile->video_count > 5) {
if ($user_profile->is_vip == UserProfile::NO_VIP && $user_profile->video_count > 5) {
return Response::fail("非VIP用户最多发布5个视频");
}
......