Skip to content

Commit

Permalink
Show more extensions (#8234)
Browse files Browse the repository at this point in the history
This is a bandaid fix for:
#8228.

Release Notes:

- N/A
  • Loading branch information
JosephTLyons authored Feb 23, 2024
1 parent 347f688 commit cc8e3c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/collab/src/api/extensions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async fn get_extensions(
Extension(app): Extension<Arc<AppState>>,
Query(params): Query<GetExtensionsParams>,
) -> Result<Json<GetExtensionsResponse>> {
let extensions = app.db.get_extensions(params.filter.as_deref(), 30).await?;
let extensions = app.db.get_extensions(params.filter.as_deref(), 500).await?;
Ok(Json(GetExtensionsResponse { data: extensions }))
}

Expand Down

0 comments on commit cc8e3c2

Please sign in to comment.