Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/e2e52746bb78f9463573c216c756fdab8aae3be1 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix repeat search when limits are empty

pull/1765/head
Bogdan 2 years ago
parent 21cc96d683
commit e2e52746bb

@ -1,4 +1,5 @@
import { push } from 'connected-react-router';
import _ from 'lodash';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { connect } from 'react-redux';
@ -49,14 +50,14 @@ class HistoryRowConnector extends Component {
// Listeners
onSearchPress = (query, indexerId, categories, type, limit, offset) => {
this.props.setSearchDefault({
this.props.setSearchDefault(_.pickBy({
searchQuery: query,
searchIndexerIds: [indexerId],
searchCategories: categories,
searchType: type,
searchLimit: limit,
searchOffset: offset
});
}));
this.props.push(`${window.Prowlarr.urlBase}/search`);
};

Loading…
Cancel
Save