forked from mirror/pixelfed
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;
|
$limit = 300;
|
||||||
|
|
||||||
$profile = Auth::user()->profile;
|
$profile = Auth::user()->profile;
|
||||||
$type = $request->input('type') == 'ap' ? 'ap' : 'api';
|
$type = 'ap';
|
||||||
|
|
||||||
$count = Status::select('id')->whereProfileId($profile->id)->count();
|
$count = Status::select('id')->whereProfileId($profile->id)->count();
|
||||||
if($count > $limit) {
|
if($count > $limit) {
|
||||||
|
|
Loading…
Reference in a new issue