Skip to content

Commit e08c275

Browse files
author
Damiano Fiorenza
committed
[DSC-2320] fix findByItemHandle using wrong parameter
1 parent 766a988 commit e08c275

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/core/data/bitstream-data.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export class BitstreamDataService extends IdentifiableDataService<Bitstream> imp
200200
const searchParams = [];
201201
searchParams.push(new RequestParam('handle', handle));
202202
if (hasValue(sequenceId)) {
203-
searchParams.push(new RequestParam('sequenceId', sequenceId));
203+
searchParams.push(new RequestParam('sequence', sequenceId));
204204
}
205205
if (hasValue(filename)) {
206206
searchParams.push(new RequestParam('filename', filename));

0 commit comments

Comments
 (0)