Skip to content

Commit bac848b

Browse files
Damiano Fiorenzavins01-4science
authored andcommitted
Merged in task/dspace-cris-2023_02_x/DSC-2320 (pull request DSpace#3127)
[DSC-2320] fix findByItemHandle using wrong parameter Approved-by: Vincenzo Mecca
2 parents c10e62f + 08aca8c commit bac848b

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
@@ -174,7 +174,7 @@ export class BitstreamDataService extends IdentifiableDataService<Bitstream> imp
174174
const searchParams = [];
175175
searchParams.push(new RequestParam('handle', handle));
176176
if (hasValue(sequenceId)) {
177-
searchParams.push(new RequestParam('sequenceId', sequenceId));
177+
searchParams.push(new RequestParam('sequence', sequenceId));
178178
}
179179
if (hasValue(filename)) {
180180
searchParams.push(new RequestParam('filename', filename));

0 commit comments

Comments
 (0)