The issue has been closed

posted by fregante about 4 years ago 
@@ -56,8 +56,8 @@ export default
class SearchQuery {
get(): string {
const currentQuery = this.searchParams.get('q');
- if (typeof currentQuery === 'string') {
- return currentQuery;
+ if (typeof currentQuery === 'string' || !this.link?.pathname) {
+ return currentQuery ?? '';
}
// Query-less URLs imply some queries.
Not sure what that does but that code made him quiet
posted by yakov116 about 4 years ago