Skip to content

Commit

Permalink
🐛 add missing arguments to sessionFetchAll
Browse files Browse the repository at this point in the history
Signed-off-by: ff137 <[email protected]>
  • Loading branch information
ff137 committed Aug 16, 2024
1 parent 6272b1f commit fe5c8a9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -517,10 +517,10 @@ export class ReactNativeAriesAskar implements AriesAskar {
}

public async sessionFetchAll(options: SessionFetchAllOptions) {
const { category, sessionHandle, forUpdate, limit, tagFilter } = serializeArguments(options)
const { category, sessionHandle, forUpdate, limit, orderBy, descending, tagFilter } = serializeArguments(options)
const handle = await this.promisifyWithResponse<string>((cb) =>
this.handleError(
this.ariesAskar.sessionFetchAll({ cb, category, sessionHandle, forUpdate, limit: limit || -1, tagFilter }),
this.ariesAskar.sessionFetchAll({ cb, category, sessionHandle, forUpdate, limit: limit || -1, orderBy, descending, tagFilter }),
),
)

Expand Down

0 comments on commit fe5c8a9

Please sign in to comment.