Skip to content

Commit

Permalink
fix(permalink): Dont need to proxify /share requests
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipLeitner authored and jmacura committed Feb 9, 2024
1 parent 87a7303 commit bebdd7b
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,7 @@ export class HsCompositionsService {
*/
async parsePermalinkLayers(permalink: string): Promise<void> {
await this.hsMapService.loaded();
const layersUrl = this.hsUtilsService.proxify(permalink);
const response: any = await lastValueFrom(this.http.get(layersUrl));
const response: any = await lastValueFrom(this.http.get(permalink));
if (response.success == true) {
const data: any = {};
data.data = {};
Expand Down

0 comments on commit bebdd7b

Please sign in to comment.