Fix train page: don't show error if no services are found
This commit is contained in:
parent
0011bdb751
commit
ec413b6e5c
@ -88,7 +88,7 @@
|
|||||||
const url = `${getApiUrl()}/api/v2/timetable/train/${formattedDate}/${searchType}/${id}`;
|
const url = `${getApiUrl()}/api/v2/timetable/train/${formattedDate}/${searchType}/${id}`;
|
||||||
try {
|
try {
|
||||||
const res = await fetch(url, options);
|
const res = await fetch(url, options);
|
||||||
if (res.status == 200) {
|
if (res.status < 300) {
|
||||||
let services = await res.json();
|
let services = await res.json();
|
||||||
if (!services.length) {
|
if (!services.length) {
|
||||||
error = true;
|
error = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user