Browse Source

fix: throw exception when invalid offset passed

pull/7400/head
Pranav C 8 months ago
parent
commit
7c3ba03d6c
  1. 7
      packages/nocodb/src/helpers/PagedResponse.ts

7
packages/nocodb/src/helpers/PagedResponse.ts

@ -1,5 +1,6 @@
import { extractLimitAndOffset } from '.';
import type { PaginatedType } from 'nocodb-sdk';
import {NcError} from "~/helpers/catchError";
export class PagedResponseImpl<T> {
constructor(
@ -40,11 +41,7 @@ export class PagedResponseImpl<T> {
if (additionalProps) Object.assign(this, additionalProps);
if (offset && offset >= +count) {
this.errors = [
{
message: 'Offset is beyond the total number of records',
},
];
NcError.badRequest('Offset is beyond the total number of records');
}
}

Loading…
Cancel
Save