Skip to content

Commit c2b8ea2

Browse files
authored
Merge pull request #63 from OS2iot/feature/23540_class-validator-vulnerability
CVE-2019-18413. Patch for potential SQL injections
2 parents 5b72e0d + ae572e0 commit c2b8ea2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/sigfox/sigfox-groups-edit/sigfox-groups-edit.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export class SigfoxGroupsEditComponent implements OnInit, OnDestroy {
109109
return;
110110
}
111111

112-
this.sigfoxService.getGroup(this.sigfoxGroup.id).subscribe(
112+
this.sigfoxService.getGroup(this.sigfoxGroupId).subscribe(
113113
(response: any) => {
114114
if (response.data.length !== 0 || response.data === undefined) {
115115
this.update();

0 commit comments

Comments
 (0)