fix(pagination) page=0 resulted in false thx JS

This commit is contained in:
2023-04-18 20:09:44 +02:00
parent f0e20e4130
commit fcee3909f4
14 changed files with 14 additions and 14 deletions

View File

@@ -29,7 +29,7 @@ export class TrackController {
let responseTracks: ResponseTrack[] = new Array<ResponseTrack>();
let tracks: Array<Track>;
if (page) {
if (page != undefined) {
tracks = await this.trackRepository.find({ skip: page * page_size, take: page_size });
}
else {