Skip to content

Commit

Permalink
For now disable compat check
Browse files Browse the repository at this point in the history
  • Loading branch information
CaramelFur committed Nov 1, 2024
1 parent 8db1768 commit f1c2ac5
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Inject, Injectable } from '@angular/core';
import { HISTORY } from '@ng-web-apis/common';
import { WA_HISTORY } from '@ng-web-apis/common';
import { HasFailed } from 'picsur-shared/dist/types/failable';
import { InfoService } from '../../services/api/info.service';
import { Logger } from '../../services/logger/logger.service';
Expand All @@ -16,9 +16,10 @@ export class CompatibilityService {
private readonly infoService: InfoService,
private readonly errorService: ErrorService,
private readonly dialogService: DialogService,
@Inject(HISTORY) private readonly history: History,
@Inject(WA_HISTORY) private readonly history: History,
) {
this.checkCompatibility().catch(this.logger.error);
// TODO: Better compatibility check
//this.checkCompatibility().catch(this.logger.error);
}

// eslint-disable-next-line @typescript-eslint/no-empty-function
Expand Down

0 comments on commit f1c2ac5

Please sign in to comment.