Skip to content

Commit

Permalink
fix: resolves #315
Browse files Browse the repository at this point in the history
  • Loading branch information
CS76 committed Dec 14, 2024
1 parent e3045c1 commit f030da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/CollectionController.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function __invoke(Request $request, $id)

$query = [
'type' => 'tags',
'q' => urlencode($collection->title),
'q' => str_replace(' ', '+', $collection->title),
'tagType' => 'dataSource',
];

Expand Down

0 comments on commit f030da4

Please sign in to comment.