Skip to content

Commit

Permalink
Merge pull request #1979 from asfadmin/hotfix-operaburstid-deeplink
Browse files Browse the repository at this point in the history
Release v2.7.4
  • Loading branch information
SpicyGarlicAlbacoreRoll authored Sep 18, 2024
2 parents f3592f1 + bb286e2 commit baa71c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/services/url-state.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,8 @@ export class UrlStateService {
};

private loadOperaBurstIDs = (ids: string): Action => {
const list = ids.split(',');
// Deep links from opera products use '-' instead of '_'
const list = ids.split(',').map(id => id.replaceAll('-', '_'));
return new filterStore.setOperaBurstID(list);
};

Expand Down

0 comments on commit baa71c2

Please sign in to comment.