Skip to content

Commit

Permalink
UpdateQuotesHandler: Handle multiple selected securities
Browse files Browse the repository at this point in the history
  • Loading branch information
pfalcon authored and buchen committed Sep 3, 2024
1 parent e221ce1 commit 3b9a345
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public void execute(@Named(IServiceConstants.ACTIVE_PART) MPart part,
if ("security".equals(filter)) //$NON-NLS-1$
{
selectionService.getSelection(client).ifPresent(s -> {
new UpdateQuotesJob(client, s.getSecurity()).schedule();
new UpdateDividendsJob(client, s.getSecurity()).schedule(5000);
new UpdateQuotesJob(client, s.getSecurities()).schedule();
new UpdateDividendsJob(client, s.getSecurities()).schedule(5000);
});
}
else if ("active".equals(filter)) //$NON-NLS-1$
Expand Down

0 comments on commit 3b9a345

Please sign in to comment.