Skip to content

Commit

Permalink
fix for opera burst id deep link discrepancy
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim committed Sep 18, 2024
1 parent aaacc5d commit bb286e2
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 bb286e2

Please sign in to comment.