Skip to content

Commit 9e20d9f

Browse files
authored
Merge pull request #332 from stevencrader/issue-331
Resolve searching for term that is all numbers
2 parents f1cc905 + 1c49f64 commit 9e20d9f

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

.env-example

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ API_SECRET=ABC
44
# separate key for add action
55
API_ADD_KEY=ABC
66
API_ADD_SECRET=ABC
7+
# API User Agent
8+
API_USER_AGENT=PodcastIndexBot/@[email protected]
79
# This is the port that the UI server starts on
810
PORT=5001
911
# this can be 'development' or 'production'

server/index.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,14 @@ const USER_AGENT = `Podcastindex.org-web/${packageJson.version}`;
1616
// NOTE: This server will work as a reverse proxy.
1717
const api = require('podcast-index-api')(
1818
process.env.API_KEY,
19-
process.env.API_SECRET
19+
process.env.API_SECRET,
20+
process.env.API_USER_AGENT
2021
)
2122

2223
const apiAdd = require('podcast-index-api')(
2324
process.env.API_ADD_KEY,
24-
process.env.API_ADD_SECRET
25+
process.env.API_ADD_SECRET,
26+
process.env.API_USER_AGENT
2527
)
2628

2729
app.set("view engine", "ejs")

ui/src/pages/Search/index.tsx

+4
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ export default class Results extends React.PureComponent<IProps> {
6363
let firstResult = null
6464
if (!isNaN(number) && searchType !== "person"){
6565
firstResult = await (await this.getFeedById(query))?.feed
66+
// check if a feed object. When query isn't a valid ID, returns list instead of empty object
67+
if (firstResult.id === undefined){
68+
firstResult = null
69+
}
6670
}
6771

6872
let results = []

0 commit comments

Comments
 (0)