fix: return 404 when tournament not found
This commit is contained in:
parent
6295c5120f
commit
4eaa35584d
@ -37,7 +37,7 @@ class Tourmanent
|
||||
let response = await this.client._get(`/api/tournaments/${id}`);
|
||||
|
||||
if (response.status === 404)
|
||||
return null;
|
||||
return 1;
|
||||
|
||||
let response_data = await response.json();
|
||||
|
||||
|
@ -17,7 +17,8 @@ class Tourmanents
|
||||
async getTournament(id)
|
||||
{
|
||||
let tournament = new Tourmanent(this.client);
|
||||
await tournament.init(id);
|
||||
if (await tournament.init(id))
|
||||
return null;
|
||||
return tournament;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user