kopia lustrzana https://github.com/pixelfed/pixelfed
				
				
				
			
						commit
						41567d5aaf
					
				| 
						 | 
				
			
			@ -236,7 +236,22 @@ class PublicApiController extends Controller
 | 
			
		|||
        if($min || $max) {
 | 
			
		||||
            $dir = $min ? '>' : '<';
 | 
			
		||||
            $id = $min ?? $max;
 | 
			
		||||
            $timeline = Status::whereHas('media')
 | 
			
		||||
            $timeline = Status::select(
 | 
			
		||||
                        'id', 
 | 
			
		||||
                        'uri',
 | 
			
		||||
                        'caption',
 | 
			
		||||
                        'rendered',
 | 
			
		||||
                        'profile_id', 
 | 
			
		||||
                        'type',
 | 
			
		||||
                        'in_reply_to_id',
 | 
			
		||||
                        'reblog_of_id',
 | 
			
		||||
                        'is_nsfw',
 | 
			
		||||
                        'scope',
 | 
			
		||||
                        'local',
 | 
			
		||||
                        'created_at',
 | 
			
		||||
                        'updated_at'
 | 
			
		||||
                      )
 | 
			
		||||
                      ->whereHas('media')
 | 
			
		||||
                      ->whereLocal(true)
 | 
			
		||||
                      ->whereNull('uri')
 | 
			
		||||
                      ->where('id', $dir, $id)
 | 
			
		||||
| 
						 | 
				
			
			@ -302,7 +317,22 @@ class PublicApiController extends Controller
 | 
			
		|||
        if($min || $max) {
 | 
			
		||||
            $dir = $min ? '>' : '<';
 | 
			
		||||
            $id = $min ?? $max;
 | 
			
		||||
            $timeline = Status::whereHas('media')
 | 
			
		||||
            $timeline = Status::select(
 | 
			
		||||
                        'id', 
 | 
			
		||||
                        'uri',
 | 
			
		||||
                        'caption',
 | 
			
		||||
                        'rendered',
 | 
			
		||||
                        'profile_id', 
 | 
			
		||||
                        'type',
 | 
			
		||||
                        'in_reply_to_id',
 | 
			
		||||
                        'reblog_of_id',
 | 
			
		||||
                        'is_nsfw',
 | 
			
		||||
                        'scope',
 | 
			
		||||
                        'local',
 | 
			
		||||
                        'created_at',
 | 
			
		||||
                        'updated_at'
 | 
			
		||||
                      )
 | 
			
		||||
                      ->whereHas('media')
 | 
			
		||||
                      ->whereLocal(true)
 | 
			
		||||
                      ->whereNull('uri')
 | 
			
		||||
                      ->where('id', $dir, $id)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Ładowanie…
	
		Reference in New Issue