فهرست منبع

Update ProfileController, revert pgsql change

Daniel Supernault 5 سال پیش
والد
کامیت
db46f7ddbb
1فایلهای تغییر یافته به همراه2 افزوده شده و 5 حذف شده
  1. 2 5
      app/Http/Controllers/ProfileController.php

+ 2 - 5
app/Http/Controllers/ProfileController.php

@@ -22,14 +22,11 @@ class ProfileController extends Controller
 {
 {
     public function show(Request $request, $username)
     public function show(Request $request, $username)
     {
     {
-        if(config('database.default') == 'pgsql') {
-            $username = strtolower($username);
-        }
-        
         $user = Profile::whereNull('domain')
         $user = Profile::whereNull('domain')
             ->whereNull('status')
             ->whereNull('status')
             ->whereUsername($username)
             ->whereUsername($username)
             ->firstOrFail();
             ->firstOrFail();
+        
         if($request->wantsJson() && config('federation.activitypub.enabled')) {
         if($request->wantsJson() && config('federation.activitypub.enabled')) {
             return $this->showActivityPub($request, $user);
             return $this->showActivityPub($request, $user);
         }
         }
@@ -247,6 +244,6 @@ class ProfileController extends Controller
             ->where('expires_at', '>', now())
             ->where('expires_at', '>', now())
             ->count();
             ->count();
         abort_unless($exists > 0, 404);
         abort_unless($exists > 0, 404);
-        return view('profile.story', compact('pid'));
+        return view('profile.story', compact('pid', 'profile'));
     }
     }
 }
 }