File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ API_SECRET=ABC
4
4
# separate key for add action
5
5
API_ADD_KEY=ABC
6
6
API_ADD_SECRET=ABC
7
+ # API User Agent
8
+ API_USER_AGENT=PodcastIndexBot/@
[email protected]
7
9
# This is the port that the UI server starts on
8
10
PORT=5001
9
11
# this can be 'development' or 'production'
Original file line number Diff line number Diff line change @@ -16,12 +16,14 @@ const USER_AGENT = `Podcastindex.org-web/${packageJson.version}`;
16
16
// NOTE: This server will work as a reverse proxy.
17
17
const api = require ( 'podcast-index-api' ) (
18
18
process . env . API_KEY ,
19
- process . env . API_SECRET
19
+ process . env . API_SECRET ,
20
+ process . env . API_USER_AGENT
20
21
)
21
22
22
23
const apiAdd = require ( 'podcast-index-api' ) (
23
24
process . env . API_ADD_KEY ,
24
- process . env . API_ADD_SECRET
25
+ process . env . API_ADD_SECRET ,
26
+ process . env . API_USER_AGENT
25
27
)
26
28
27
29
app . set ( "view engine" , "ejs" )
Original file line number Diff line number Diff line change @@ -63,6 +63,10 @@ export default class Results extends React.PureComponent<IProps> {
63
63
let firstResult = null
64
64
if ( ! isNaN ( number ) && searchType !== "person" ) {
65
65
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
+ }
66
70
}
67
71
68
72
let results = [ ]
You can’t perform that action at this time.
0 commit comments