mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Merge pull request #1194 from pixelfed/frontend-ui-refactor
Update ExportSettings
This commit is contained in:
commit
6f0f55cb02
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ trait ExportSettings
|
|||
$limit = 300;
|
||||
|
||||
$profile = Auth::user()->profile;
|
||||
$type = $request->input('type') == 'ap' ? 'ap' : 'api';
|
||||
$type = 'ap';
|
||||
|
||||
$count = Status::select('id')->whereProfileId($profile->id)->count();
|
||||
if($count > $limit) {
|
||||
|
|
Loading…
Reference in a new issue