Skip to content

Commit

Permalink
fix: reverse proxy feature local storage check
Browse files Browse the repository at this point in the history
  • Loading branch information
klopfdreh committed Sep 25, 2024
1 parent 0688c6d commit cb90f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/shared/api/task.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ export class TaskService {
const params = new HttpParams({encoder: new DataflowEncoder()});
return this.httpClient
.get<any>(
UrlUtilities.fixReverseProxyUrl(url, this.localStorageService.get('reverseProxyFixActiveValue') === true),
UrlUtilities.fixReverseProxyUrl(url, this.localStorageService.get('reverseProxyFixActiveValue') === 'true'),
{
headers,
params
Expand Down

0 comments on commit cb90f0a

Please sign in to comment.