Skip to content

Commit 2b78b27

Browse files
fix lint
1 parent 0856707 commit 2b78b27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AzureAppConfigurationImpl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ export class AzureAppConfigurationImpl implements AzureAppConfiguration {
424424
onlyIfChanged: !this.#isCdnUsed // if CDN is used, do not send conditional request
425425
});
426426

427-
if ((response?.statusCode === 200 && sentinel.etag !== response?.etag) ||
427+
if ((response?.statusCode === 200 && sentinel.etag !== response?.etag) ||
428428
(response === undefined && sentinel.etag !== undefined) // deleted
429429
) {
430430
sentinel.etag = response?.etag;// update etag of the sentinel

0 commit comments

Comments
 (0)